Skip to content

Commit

Permalink
Merge pull request alibaba#42 from panshimin1112/master
Browse files Browse the repository at this point in the history
修改拼写错误。
  • Loading branch information
SoXeon authored Feb 9, 2017
2 parents cd86035 + fcf09ac commit 10b54f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BeeHive/BHAppDelegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ typedef void (^notificationResultHandler)(UIBackgroundFetchResult);
@property (nonatomic, strong) NSError *notificationsError;
@property (nonatomic, strong) NSData *deviceToken;
@property (nonatomic, strong) NSDictionary *userInfo;
@property (nonatomic, assign) notificationResultHandler notifciationResultHander;
@property (nonatomic, assign) notificationResultHandler notificationResultHander;
@property (nonatomic, strong) UILocalNotification *localNotification;

@end
Expand Down
2 changes: 1 addition & 1 deletion BeeHive/BHAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ - (void)application:(UIApplication *)application didReceiveRemoteNotification:(N
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
{
[[BeeHive shareInstance].context.notificationsItem setUserInfo: userInfo];
[[BeeHive shareInstance].context.notificationsItem setNotifciationResultHander: completionHandler];
[[BeeHive shareInstance].context.notificationsItem setNotificationResultHander: completionHandler];
[[BHModuleManager sharedManager] triggerEvent:BHMDidReceiveRemoteNotificationEvent];
}

Expand Down

0 comments on commit 10b54f0

Please sign in to comment.