Skip to content
Snippets Groups Projects
Commit 740cc99b authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

linter

parent 2d6c8863
Branches
No related tags found
No related merge requests found
Pipeline #66408 passed
......@@ -422,7 +422,7 @@ export class NextcloudFilePicker extends ScopedElementsMixin(DBPLitElement) {
*/
async checkLocalStorage() {
if (!this.isLoggedIn() || !this.auth) {
for (let [key, value] of Object.entries(localStorage)) {
for (let key of Object.keys(localStorage)) {
if (key.includes("nextcloud-webdav-username-") || key.includes("nextcloud-webdav-password-")) {
localStorage.removeItem(key);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment