Skip to content

Commit 48d2d07

Browse files
committed
re-add tachiyomi signing key
1 parent 4a4029c commit 48d2d07

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/src/main/java/eu/kanade/tachiyomi/extension/util/ExtensionLoader.kt

+4-1
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,13 @@ internal object ExtensionLoader {
3838

3939
private const val PACKAGE_FLAGS = PackageManager.GET_CONFIGURATIONS or PackageManager.GET_SIGNATURES
4040

41+
// inorichi's key
42+
val officialSignature = "7ce04da7773d41b489f4693a366c36bcd0a11fc39b547168553c285bd7348e23"
43+
4144
/**
4245
* List of the trusted signatures.
4346
*/
44-
var trustedSignatures = mutableSetOf<String>() + preferences.trustedSignatures().get()
47+
var trustedSignatures = mutableSetOf<String>() + preferences.trustedSignatures().get() + officialSignature
4548

4649
/**
4750
* Return a list of all the installed extensions initialized concurrently.

0 commit comments

Comments
 (0)