Rollback whatwg-mimetype dep version

This commit is contained in:
Luck
2026-02-26 21:50:44 +00:00
parent 8a4e72603c
commit 60e4cbc4ed
3 changed files with 8 additions and 7 deletions

View File

@@ -31,7 +31,8 @@ export async function loadFromBytebin(id: string): Promise<LoadResult> {
} else {
return { ok: false };
}
} catch {
} catch (e) {
console.error(e);
return { ok: false };
}
}
@@ -59,7 +60,7 @@ export async function saveToBytebin(
return json.key;
}
} catch (e) {
console.log(e);
console.error(e);
}
return null;
}