Fix timelines loading bug

This commit is contained in:
Eugen Rochko
2016-12-12 14:39:18 +01:00
parent 6d1066fe61
commit 908fcf83c6
3 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ export function refreshTimeline(timeline, id = null) {
let params = '';
let path = timeline;
if (newestId !== null) {
if (newestId !== null && getState().getIn(['timelines', timeline, 'loaded'])) {
params = `?since_id=${newestId}`;
}