Merged PR 14385: Fix small mistake in iOSnotification processing

Fix small mistake in iOS notification processing
This commit is contained in:
Brian Bowman 2019-02-20 18:26:02 +00:00
Родитель e072e36c8b
Коммит 985e925ad4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -85,7 +85,7 @@
// may be for an account that isn't fully set up yet. This is more likely to happen when the app is launched as a result of the notification so there
// isn't much time to start the platform before needing to process the notification.
[AnyPromise promiseWithAdapterBlock:^(PMKAdapter _Nonnull adapter) {
[self.platform processNotificationAsync:notification completion:^(NSError* error)
[_platformManager.platform processNotificationAsync:notification completion:^(NSError* error)
{
adapter(nil, error);
}];