fix(metadata): remove forced download attribution

This commit is contained in:
zarzet
2026-08-26 18:31:39 +07:00
parent 832214043d
commit 5f8e0da148
3 changed files with 16 additions and 29 deletions
@@ -34,9 +34,8 @@ func TestOverlayExtensionReleaseMetadataFillsMissingRequestFields(t *testing.T)
"song.m4a",
false,
)
expectedComment := track.Comment + "\n" + downloadCommentCredit
if response.UPC != track.UPC || response.AlbumType != "single" ||
!response.Explicit || response.Comment != expectedComment {
!response.Explicit || response.Comment != track.Comment {
t.Fatalf("enriched metadata was lost in download response: %#v", response)
}
}