Merge branch 'master' into 'master'
ApplicationID / PackageName is defined as case-sensitive See merge request fdroid/fdroidclient!944
This commit is contained in:
commit
2f0994d16f
@ -245,7 +245,7 @@ public final class AppUpdateStatusManager {
|
|||||||
ArrayList<AppUpdateStatus> returnValues = new ArrayList<>();
|
ArrayList<AppUpdateStatus> returnValues = new ArrayList<>();
|
||||||
synchronized (appMapping) {
|
synchronized (appMapping) {
|
||||||
for (AppUpdateStatus entry : appMapping.values()) {
|
for (AppUpdateStatus entry : appMapping.values()) {
|
||||||
if (entry.apk.packageName.equalsIgnoreCase(packageName)) {
|
if (entry.apk.packageName.equals(packageName)) {
|
||||||
returnValues.add(entry);
|
returnValues.add(entry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user