Fix push for iOS
This commit is contained in:
parent
9f96136571
commit
b1e423b7a5
|
@ -4,10 +4,10 @@ import EJSON from 'ejson';
|
||||||
import { goRoom } from './containers/routes/NavigationService';
|
import { goRoom } from './containers/routes/NavigationService';
|
||||||
|
|
||||||
const handleNotification = (notification) => {
|
const handleNotification = (notification) => {
|
||||||
if (notification.usernInteraction) {
|
if (!notification.userInteraction) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const { rid, name } = EJSON.parse(notification.ejson);
|
const { rid, name } = EJSON.parse(notification.ejson || notification.data.ejson);
|
||||||
return rid && name && goRoom({ rid, name });
|
return rid && name && goRoom({ rid, name });
|
||||||
};
|
};
|
||||||
PushNotification.configure({
|
PushNotification.configure({
|
||||||
|
|
Loading…
Reference in New Issue