Skip to content

Commit

Permalink
fix musicbrainz url
Browse files Browse the repository at this point in the history
  • Loading branch information
tamland committed Oct 24, 2024
1 parent 8c15b0b commit 84ba6c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ export class API {
genres: this.normalizeGenres(item),
lastFmUrl: item.lastFmUrl,
musicBrainzUrl: item.musicBrainzId
? `https://musicbrainz.org/album/${item.musicBrainzId}`
? `https://musicbrainz.org/release/${item.musicBrainzId}`
: undefined,
tracks: (item.song || []).map(this.normalizeTrack, this)
}
Expand Down

0 comments on commit 84ba6c0

Please sign in to comment.