Fix: await getValue

This commit is contained in:
eight04 2021-12-09 23:42:21 +08:00
parent 45d41cb4b0
commit e6839c8d35

View File

@ -93,7 +93,7 @@ const syncMan = (() => {
async getDriveOptions(driveName) {
const key = `secure/sync/driveOptions/${driveName}`;
return chromeSync.getValue(key) || {};
return await chromeSync.getValue(key) || {};
},
async start(name, fromPref = false) {