Fix since_id

lolsob-rspec
Thibaut Girka 2018-12-01 17:54:12 +01:00 committed by ThibG
parent c430672460
commit 606f0df712
1 changed files with 1 additions and 1 deletions

View File

@ -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));