use optional catch binding syntax

This commit is contained in:
Daniel Micay 2024-11-28 18:11:46 -05:00
parent e352396c77
commit 39eca997e7

View File

@ -125,7 +125,7 @@ class BlobStore {
this.db.transaction("files").objectStore("files").get(name) this.db.transaction("files").objectStore("files").get(name)
); );
return obj.blob; return obj.blob;
} catch (error) { } catch {
return null; return null;
} }
} }