Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
Delusoire committed Dec 7, 2023
1 parent a2cc38b commit 71c296f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/detect-duplicates/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const getISRCsForUris = async (uris: string[]) => {

export const isUriOutdatedDuplicate = async (uri: string) => {
const isrc = uriToISRC.get(uri)
if (!isrc) return null // cache miss, shouldn't happen as we have made a pass to load the cache
if (!isrc) return null // cache miss, should never happen as we have made a pass to load the cache
const uris = await getUrisFromISRC(isrc)
if (!uris) return null
return uri !== uris[0]
Expand Down

0 comments on commit 71c296f

Please sign in to comment.