mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-04-20 23:07:26 -04:00
Replaced equalsIgnoreCase() with equals()
This commit is contained in:
@@ -327,7 +327,7 @@ public class IndexV1Updater extends IndexUpdater {
|
||||
for (Apk apk : apks) {
|
||||
if (!apk.isApk()) {
|
||||
app.isApk = false;
|
||||
} else if (apk.sig.equalsIgnoreCase(platformSigCache)) {
|
||||
} else if (apk.sig.equals(platformSigCache)) {
|
||||
app.preferredSigner = platformSigCache;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user