mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
Merge branch 'extension-fixes' of https://github.com/movie-web/movie-web into extension-fixes
This commit is contained in:
commit
d43adb80d0
1 changed files with 9 additions and 5 deletions
|
@ -149,8 +149,10 @@ export function useAuth() {
|
||||||
bookmarkMediaToInput(tmdbId, item),
|
bookmarkMediaToInput(tmdbId, item),
|
||||||
);
|
);
|
||||||
|
|
||||||
await importProgress(backendUrl, account, progressInputs);
|
await Promise.all([
|
||||||
await importBookmarks(backendUrl, account, bookmarkInputs);
|
importProgress(backendUrl, account, progressInputs),
|
||||||
|
importBookmarks(backendUrl, account, bookmarkInputs),
|
||||||
|
]);
|
||||||
},
|
},
|
||||||
[backendUrl],
|
[backendUrl],
|
||||||
);
|
);
|
||||||
|
@ -174,9 +176,11 @@ export function useAuth() {
|
||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
|
|
||||||
const bookmarks = await getBookmarks(backendUrl, account);
|
const [bookmarks, progress, settings] = await Promise.all([
|
||||||
const progress = await getProgress(backendUrl, account);
|
getBookmarks(backendUrl, account),
|
||||||
const settings = await getSettings(backendUrl, account);
|
getProgress(backendUrl, account),
|
||||||
|
getSettings(backendUrl, account),
|
||||||
|
]);
|
||||||
|
|
||||||
syncData(user.user, user.session, progress, bookmarks, settings);
|
syncData(user.user, user.session, progress, bookmarks, settings);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue