We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a4029c commit 48d2d07Copy full SHA for 48d2d07
app/src/main/java/eu/kanade/tachiyomi/extension/util/ExtensionLoader.kt
@@ -38,10 +38,13 @@ internal object ExtensionLoader {
38
39
private const val PACKAGE_FLAGS = PackageManager.GET_CONFIGURATIONS or PackageManager.GET_SIGNATURES
40
41
+ // inorichi's key
42
+ val officialSignature = "7ce04da7773d41b489f4693a366c36bcd0a11fc39b547168553c285bd7348e23"
43
+
44
/**
45
* List of the trusted signatures.
46
*/
- var trustedSignatures = mutableSetOf<String>() + preferences.trustedSignatures().get()
47
+ var trustedSignatures = mutableSetOf<String>() + preferences.trustedSignatures().get() + officialSignature
48
49
50
* Return a list of all the installed extensions initialized concurrently.
0 commit comments