|
|
@ -179,6 +179,16 @@ static NSTimeInterval launchStartedAt;
|
|
|
|
return AppEnvironment.shared.notificationPresenter;
|
|
|
|
return AppEnvironment.shared.notificationPresenter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- (OWSUserNotificationActionHandler *)userNotificationActionHandler
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return AppEnvironment.shared.userNotificationActionHandler;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- (OWSLegacyNotificationActionHandler *)legacyNotificationActionHandler
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return AppEnvironment.shared.legacyNotificationActionHandler;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#pragma mark -
|
|
|
|
#pragma mark -
|
|
|
|
|
|
|
|
|
|
|
|
- (void)applicationDidEnterBackground:(UIApplication *)application {
|
|
|
|
- (void)applicationDidEnterBackground:(UIApplication *)application {
|
|
|
@ -1159,8 +1169,8 @@ static NSTimeInterval launchStartedAt;
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[LegacyNotificationActionHandler.shared
|
|
|
|
[self.legacyNotificationActionHandler
|
|
|
|
handleNotificationResponseWithActionIdentifier:LegacyNotificationActionHandler.kDefaultActionIdentifier
|
|
|
|
handleNotificationResponseWithActionIdentifier:OWSLegacyNotificationActionHandler.kDefaultActionIdentifier
|
|
|
|
notification:notification
|
|
|
|
notification:notification
|
|
|
|
responseInfo:@{}
|
|
|
|
responseInfo:@{}
|
|
|
|
completionHandler:^{
|
|
|
|
completionHandler:^{
|
|
|
@ -1194,10 +1204,10 @@ static NSTimeInterval launchStartedAt;
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[LegacyNotificationActionHandler.shared handleNotificationResponseWithActionIdentifier:identifier
|
|
|
|
[self.legacyNotificationActionHandler handleNotificationResponseWithActionIdentifier:identifier
|
|
|
|
notification:notification
|
|
|
|
notification:notification
|
|
|
|
responseInfo:@{}
|
|
|
|
responseInfo:@{}
|
|
|
|
completionHandler:completionHandler];
|
|
|
|
completionHandler:completionHandler];
|
|
|
|
}];
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -1230,10 +1240,10 @@ static NSTimeInterval launchStartedAt;
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[LegacyNotificationActionHandler.shared handleNotificationResponseWithActionIdentifier:identifier
|
|
|
|
[self.legacyNotificationActionHandler handleNotificationResponseWithActionIdentifier:identifier
|
|
|
|
notification:notification
|
|
|
|
notification:notification
|
|
|
|
responseInfo:responseInfo
|
|
|
|
responseInfo:responseInfo
|
|
|
|
completionHandler:completionHandler];
|
|
|
|
completionHandler:completionHandler];
|
|
|
|
}];
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -1529,7 +1539,7 @@ static NSTimeInterval launchStartedAt;
|
|
|
|
{
|
|
|
|
{
|
|
|
|
OWSLogInfo(@"");
|
|
|
|
OWSLogInfo(@"");
|
|
|
|
[AppReadiness runNowOrWhenAppDidBecomeReady:^() {
|
|
|
|
[AppReadiness runNowOrWhenAppDidBecomeReady:^() {
|
|
|
|
[UserNotificationActionHandler.shared handleNotificationResponse:response completionHandler:completionHandler];
|
|
|
|
[self.userNotificationActionHandler handleNotificationResponse:response completionHandler:completionHandler];
|
|
|
|
}];
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|