mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-19 05:13:01 +00:00
Fix last_status parameter for notifications and conversations (#9407)
This commit is contained in:
parent
6a285f0a15
commit
5648b30d6c
|
@ -38,7 +38,7 @@ export const expandConversations = ({ maxId } = {}) => (dispatch, getState) => {
|
||||||
const params = { max_id: maxId };
|
const params = { max_id: maxId };
|
||||||
|
|
||||||
if (!maxId) {
|
if (!maxId) {
|
||||||
params.since_id = getState().getIn(['conversations', 0, 'last_status']);
|
params.since_id = getState().getIn(['conversations', 'items', 0, 'last_status']);
|
||||||
}
|
}
|
||||||
|
|
||||||
api(getState).get('/api/v1/conversations', { params })
|
api(getState).get('/api/v1/conversations', { params })
|
||||||
|
|
|
@ -106,7 +106,7 @@ export function expandNotifications({ maxId } = {}, done = noOp) {
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!maxId && notifications.get('items').size > 0) {
|
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));
|
dispatch(expandNotificationsRequest(isLoadingMore));
|
||||||
|
|
Loading…
Reference in a new issue