WebUI: Add multi-file renaming

PR #18287.
Closes #16239.
This commit is contained in:
loligans
2023-02-19 03:07:55 -08:00
committed by GitHub
parent d75fd3fcde
commit 466314675c
12 changed files with 1340 additions and 28 deletions

View File

@@ -54,6 +54,15 @@ window.qBittorrent.LocalPreferences = (function() {
catch (err) {
console.error(err);
}
},
remove: function(key) {
try {
localStorage.removeItem(key);
}
catch (err) {
console.error(err);
}
}
});