Skip to content

Commit

Permalink
fix: use lowercase uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
triniwiz committed Jan 31, 2024
1 parent 4c11dab commit 9a94a21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NativeScript/runtime/Runtime.mm
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ void DisposeIsolateWhenPossible(Isolate* isolate) {
URL.createObjectURL = function (object, options = null) {
try {
if (object instanceof Blob || object instanceof File) {
const id = NSUUID.UUID().UUIDString;
const id = NSUUID.UUID().UUIDString.toLowerCase();
const ret = `blob:nativescript/${id}`;
BLOB_STORE.set(ret, {
blob: object,
Expand Down

0 comments on commit 9a94a21

Please sign in to comment.