We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efdccf3 commit f8685ccCopy full SHA for f8685cc
client/src/scripts/quicktag.ts
@@ -310,13 +310,7 @@ class QTTrack implements QuickTagFile {
310
this.originalGenres.push(...subgenres.filter(g => !this.genres.includes(g)));
311
this.genres.push(...subgenres.filter(g => !this.genres.includes(g)));
312
}
313
- }
314
-
315
- // Format genres for display
316
- formatGenresString(genres: string[]): string {
317
- // Filter out any empty strings, then join with comma + space
318
- return this.processGenreArray(genres).join(', ');
319
+ }
320
321
// Process genres
322
processGenreArray(genres: string[]): string[] {
0 commit comments