Skip to content

Commit

Permalink
Trust extensions by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartatz committed Nov 1, 2024
1 parent 3c1cfa1 commit 4ee4884
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ internal object ExtensionLoader {
if (signatures.isNullOrEmpty()) {
logcat(LogPriority.WARN) { "Package $pkgName isn't signed" }
return LoadResult.Error
} else if (!trustExtension.isTrusted(pkgInfo, signatures)) {
} else if (false /* !trustExtension.isTrusted(pkgInfo, signatures) */) {
val extension = Extension.Untrusted(
extName,
pkgName,
Expand Down

0 comments on commit 4ee4884

Please sign in to comment.