1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

Fixed: Restoring a backup with a different API didn't reload properly

This commit is contained in:
Mark McDowall
2021-02-27 12:10:20 -08:00
parent 2728bf79ca
commit 13ff2d4c70
2 changed files with 72 additions and 1 deletions
@@ -10,6 +10,7 @@ import createFetchHandler from './Creators/createFetchHandler';
import createRemoveItemHandler from './Creators/createRemoveItemHandler';
import createHandleActions from './Creators/createHandleActions';
import createServerSideCollectionHandlers from './Creators/createServerSideCollectionHandlers';
import { pingServer } from './appActions';
import { set } from './baseActions';
//
@@ -351,6 +352,7 @@ export const actionHandlers = handleThunks({
promise.done(() => {
dispatch(setAppValue({ isRestarting: true }));
dispatch(pingServer());
});
},