fix(browser): refresh used after deleting uploading

This commit is contained in:
hexxa 2021-09-12 21:39:51 +08:00 committed by Hexxa
parent ac797848e8
commit 70318be81d

View file

@ -111,8 +111,12 @@ export class Browser extends React.Component<Props, State, {}> {
}
return updater().refreshUploadings();
})
.then(() => {
return updater().self();
})
.then(() => {
this.update(updater().updateBrowser);
this.update(updater().updateLogin);
});
};