mirror of
https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background
synced 2024-11-14 19:44:53 +00:00
Xcode se queja "Estos siempre se evaluará como true" no es necesario "&"
This commit is contained in:
parent
2538983691
commit
ee9d16cb27
@ -49,7 +49,7 @@ NSString *const kAPPBackgroundEventFailure = @"failure";
|
||||
{
|
||||
NSNotificationCenter* listener = [NSNotificationCenter defaultCenter];
|
||||
|
||||
if (&UIApplicationDidEnterBackgroundNotification && &UIApplicationWillEnterForegroundNotification) {
|
||||
if (UIApplicationDidEnterBackgroundNotification && UIApplicationWillEnterForegroundNotification) {
|
||||
|
||||
[listener addObserver:self
|
||||
selector:@selector(keepAwake)
|
||||
|
Loading…
Reference in New Issue
Block a user