mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-24 07:05:35 +00:00
Fix typo: comparisonResult.
This commit is contained in:
@@ -210,9 +210,9 @@
|
||||
} else {
|
||||
BITHockeyLog(@"INFO: Compare new version string %@ with %@", _newStoreVersion, lastStoreVersion);
|
||||
|
||||
NSComparisonResult comparissonResult = bit_versionCompare(_newStoreVersion, lastStoreVersion);
|
||||
NSComparisonResult comparisonResult = bit_versionCompare(_newStoreVersion, lastStoreVersion);
|
||||
|
||||
if (comparissonResult == NSOrderedDescending) {
|
||||
if (comparisonResult == NSOrderedDescending) {
|
||||
return YES;
|
||||
} else {
|
||||
return NO;
|
||||
|
||||
Reference in New Issue
Block a user