Fix since_id

master
Thibaut Girka 5 years ago committed by ThibG
parent 3cbe0c26bb
commit 4b85bf12ab
  1. 2
      app/javascript/flavours/glitch/actions/notifications.js

@ -102,7 +102,7 @@ export function expandNotifications({ maxId } = {}, done = noOp) {
};
if (!maxId && notifications.get('items').size > 0) {
params.since_id = notifications.getIn(['items', 0]);
params.since_id = notifications.getIn(['items', 0, 'id']);
}
dispatch(expandNotificationsRequest(isLoadingMore));

Loading…
Cancel
Save