mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-19 23:48:01 +01:00
Fix batching issue that was causing duplication in large queries
This commit is contained in:
@@ -357,7 +357,7 @@ public class ProfileController {
|
||||
} catch (NoSuchAlgorithmException e) {
|
||||
throw new AssertionError(e);
|
||||
}
|
||||
for (final BatchIdentityCheckRequest.Element element : request.elements()) {
|
||||
for (final BatchIdentityCheckRequest.Element element : batch) {
|
||||
checkFingerprintAndAdd(element, responseElements, sha256);
|
||||
}
|
||||
}, batchIdentityCheckExecutor);
|
||||
|
||||
Reference in New Issue
Block a user