This commit is contained in:
Booteille 2025-05-18 21:57:46 +02:00
parent b5e038ebe7
commit 62bea86d25
No known key found for this signature in database
GPG Key ID: 0AB6C6CA01272646
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ const importStorage = (event) => {
const validURL = (str) => {
try {
return new URL(str).host ? true : false;
} catch (e) {
} catch (_e) {
return false;
}
};