prevent subscription notification when viewing subscriptions page

This commit is contained in:
Travis Eden 2018-08-14 15:30:36 -04:00
parent 35f35dcbae
commit 30e0ff309a

View file

@ -154,13 +154,15 @@ export function doUpdateLoadStatus(uri, outpoint) {
); );
}; };
} }
dispatch( if (state.navigation.currentPath !== '/subscriptions') {
setSubscriptionNotification( dispatch(
notifications[uri].subscription, setSubscriptionNotification(
uri, notifications[uri].subscription,
NOTIFICATION_TYPES.DOWNLOADED uri,
) NOTIFICATION_TYPES.DOWNLOADED
); )
);
}
} else { } else {
// If notifications are disabled(false) just return // If notifications are disabled(false) just return
if (!selectosNotificationsEnabled(getState())) return; if (!selectosNotificationsEnabled(getState())) return;