We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fb69be commit 9160488Copy full SHA for 9160488
src/renderer/helpers/playlists.js
@@ -86,7 +86,7 @@ function compareTwoPlaylistItems(a, b, sortOrder, collator) {
86
}
87
88
export const generateRandomUniqueId = crypto.randomUUID
89
- ? crypto.randomUUID
+ ? crypto.randomUUID.bind(crypto)
90
: () => `id-${Date.now()}-${Math.floor(Math.random() * 10000)}`
91
92
/**
0 commit comments