mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
Fix typo in BITHockeyManagerDelegate method
Must be all time favorite, thanks to Evan for letting us know :-D
This commit is contained in:
parent
faeb19f0a3
commit
d616018f39
@ -36,7 +36,7 @@
|
||||
|
||||
@interface BITHockeyManager ()
|
||||
|
||||
- (BOOL)shouldUseLiveIdenfitier;
|
||||
- (BOOL)shouldUseLiveIdentifier;
|
||||
|
||||
- (void)configureJMC;
|
||||
|
||||
@ -117,7 +117,7 @@
|
||||
_delegate = delegate;
|
||||
[_appIdentifier release];
|
||||
|
||||
if ([self shouldUseLiveIdenfitier]) {
|
||||
if ([self shouldUseLiveIdentifier]) {
|
||||
_appIdentifier = [liveIdentifier copy];
|
||||
}
|
||||
else {
|
||||
@ -178,10 +178,10 @@
|
||||
|
||||
#pragma mark - Private Instance Methods
|
||||
|
||||
- (BOOL)shouldUseLiveIdenfitier {
|
||||
- (BOOL)shouldUseLiveIdentifier {
|
||||
BOOL delegateResult = NO;
|
||||
if ([_delegate respondsToSelector:@selector(shouldUseLiveIdenfitier)]) {
|
||||
delegateResult = [(NSObject <BITHockeyManagerDelegate>*)_delegate shouldUseLiveIdenfitier];
|
||||
if ([_delegate respondsToSelector:@selector(shouldUseLiveIdentifier)]) {
|
||||
delegateResult = [(NSObject <BITHockeyManagerDelegate>*)_delegate shouldUseLiveIdentifier];
|
||||
}
|
||||
|
||||
return (delegateResult) || (_appStoreEnvironment);
|
||||
|
@ -46,13 +46,13 @@
|
||||
the App Store.
|
||||
|
||||
Example:
|
||||
- (BOOL)shouldUseLiveIdenfitier {
|
||||
- (BOOL)shouldUseLiveIdentifier {
|
||||
#ifdef (CONFIGURATION_Release)
|
||||
return YES;
|
||||
#endif
|
||||
return NO;
|
||||
}
|
||||
*/
|
||||
- (BOOL)shouldUseLiveIdenfitier;
|
||||
- (BOOL)shouldUseLiveIdentifier;
|
||||
|
||||
@end
|
Loading…
x
Reference in New Issue
Block a user