@ -14,61 +14,61 @@ export const ISSUE_CATEGORY_META: Record<
> = {
wrong_track : {
label : 'Wrong Track' ,
icon : ' XT ',
icon : ' ❌ ',
description : 'This file plays a different song than expected' ,
applies : [ 'track' ] ,
} ,
wrong_metadata : {
label : 'Wrong Metadata' ,
icon : ' MD ',
icon : ' ✎ ',
description : 'Title, artist, year, or other tags are incorrect' ,
applies : [ 'track' , 'album' ] ,
} ,
wrong_cover : {
label : 'Wrong Cover Art' ,
icon : ' CA ',
icon : ' 📷 ',
description : 'The artwork is wrong or missing' ,
applies : [ 'album' ] ,
} ,
wrong_artist : {
label : 'Wrong Artist' ,
icon : ' AR ',
icon : ' 👤 ',
description : 'This track is filed under the wrong artist' ,
applies : [ 'track' ] ,
} ,
duplicate_tracks : {
label : 'Duplicate Tracks' ,
icon : ' DT ',
icon : ' 🔁 ',
description : 'The same track appears more than once in this album' ,
applies : [ 'album' ] ,
} ,
missing_tracks : {
label : 'Missing Tracks' ,
icon : ' MT ',
icon : ' ❓ ',
description : 'Tracks that should be here are missing' ,
applies : [ 'album' ] ,
} ,
audio_quality : {
label : 'Audio Quality' ,
icon : ' AQ ',
icon : ' 🎵 ',
description : 'Audio has quality issues like clipping or low bitrate' ,
applies : [ 'track' ] ,
} ,
wrong_album : {
label : 'Wrong Album' ,
icon : ' AL ',
icon : ' 💿 ',
description : 'This track belongs to a different album' ,
applies : [ 'track' ] ,
} ,
incomplete_album : {
label : 'Incomplete Album' ,
icon : ' IA ',
icon : ' ⚠ ',
description : 'Album is partially downloaded' ,
applies : [ 'album' ] ,
} ,
other : {
label : 'Other' ,
icon : ' OT ',
icon : ' 💬 ',
description : 'Any other issue not listed above' ,
applies : [ 'track' , 'album' , 'artist' ] ,
} ,