1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-24 07:12:57 +00:00

Fixed missing returning statement when updating Writeable

This commit is contained in:
2024-08-12 20:02:35 +04:00
parent 4635ccdb2b
commit 2f8d608e6b

View File

@@ -15,5 +15,7 @@ chrome.storage.local.onChanged.addListener(changes => {
for (let updatedStorageName of Object.keys(changes)) {
storages[updatedStorageName] = changes[updatedStorageName].newValue;
}
return storages;
})
});