1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-23 09:52:16 -05:00
This commit is contained in:
Art O Cathain 2015-03-31 20:29:51 +01:00
parent 6a03e62f52
commit 1ec2c5b095

View File

@ -5475,7 +5475,9 @@ public class MessagingController implements Runnable {
while (memIt.hasNext()) {
Entry<String, Memory> memoryEntry = memIt.next();
if (memoryEntry.getValue().account.getUuid().equals(account.getUuid())) {
String uuidForMemory = memoryEntry.getValue().account.getUuid();
if (uuidForMemory.equals(account.getUuid())) {
memIt.remove();
}
}