Bladeren bron

Fix last_status parameter for notifications and conversations (#9407)

master
ThibG 5 jaren geleden
committed by Eugen Rochko
bovenliggende
commit
5648b30d6c
2 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. +1
    -1
      app/javascript/mastodon/actions/conversations.js
  2. +1
    -1
      app/javascript/mastodon/actions/notifications.js

+ 1
- 1
app/javascript/mastodon/actions/conversations.js Bestand weergeven

@@ -38,7 +38,7 @@ export const expandConversations = ({ maxId } = {}) => (dispatch, getState) => {
const params = { max_id: 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 })


+ 1
- 1
app/javascript/mastodon/actions/notifications.js Bestand weergeven

@@ -106,7 +106,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));


Laden…
Annuleren
Opslaan