fix: stop calling claim_list_mine if no more pending publishes
This commit is contained in:
parent
4379bca73e
commit
de9c736703
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ export const doCheckPendingPublishes = () => (dispatch: Dispatch, getState: GetS
|
|||
|
||||
dispatch(batchActions(...actions));
|
||||
|
||||
if (!pendingPublishes.length) {
|
||||
if (!Object.keys(pendingPublishes).length) {
|
||||
clearInterval(publishCheckInterval);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue