BuildConfig: remove debugging assert

This commit is contained in:
Peter
2019-04-29 20:26:56 +04:00
parent 27c18424f4
commit bdcfd4a833
4 changed files with 4 additions and 7 deletions

View File

@@ -622,7 +622,7 @@ API_AVAILABLE(ios(10))
[resultData writeToFile:filePath atomically:false];
}
if (@available(iOS 10, *)) {
if (@available(iOS 11, *)) {
NSData *currentEncryptedData = [NSData dataWithContentsOfFile:encryptedPath];
LocalPrivateKey *localPrivateKey = [self getLocalPrivateKey:baseAppBundleId];
@@ -638,7 +638,7 @@ API_AVAILABLE(ios(10))
if (![resultData isEqualToData:decryptedData]) {
NSData *encryptedData = [localPrivateKey encrypt:resultData];
[encryptedData writeToFile:encryptedPath atomically:false];
assert(false);
//assert(false);
}
} else {
NSData *encryptedData = [localPrivateKey encrypt:resultData];

View File

@@ -4236,9 +4236,6 @@ Unused sets are archived when you add more.";
"ChatList.UndoArchiveTitle" = "Chat archived";
"ChatList.UndoArchiveText1" = "Hide the archive by swiping left on it.";
"ChatList.UndoArchiveText2" = "Unmuted chats will get unarchived if new messages arrive.";
"ChatList.UndoArchiveText3" = "Muted chats will stay archived after new messages arrive.";
"ChatList.UndoArchiveText4" = "You can pin unlimited number or archived chats to the top.";
"ChatList.UndoArchiveHiddenTitle" = "Archive unpinned";
"ChatList.UndoArchiveHiddenText" = "Swipe down to see archive.";
"ChatList.UndoArchiveRevealedTitle" = "Archive pinned";