08-27-2020, 12:42 PM
(This post was last modified: 08-27-2020, 12:45 PM by Tim Curtis.
Edit Reason: eta
)
@Atair you mentioned earlier that ...
"one track has GENRE: A;B;C, the next GENRE: B;C;A, and others maybe GENRE: C;B;A"
A quick look at the code and it's storing only the last genre in the ; separated list. For example:
track1 A;B;C
track2 A;B;C
track3 B;C;A
track4 A;C;B
track5 A;C;B
track6 A;C;B
Results in Tag view showing:
Genre A
- track3
Genre B
- track4
- track5
- track6
Genre C
- track1
- track2
I think this is what's happening in your case.
"one track has GENRE: A;B;C, the next GENRE: B;C;A, and others maybe GENRE: C;B;A"
A quick look at the code and it's storing only the last genre in the ; separated list. For example:
track1 A;B;C
track2 A;B;C
track3 B;C;A
track4 A;C;B
track5 A;C;B
track6 A;C;B
Results in Tag view showing:
Genre A
- track3
Genre B
- track4
- track5
- track6
Genre C
- track1
- track2
I think this is what's happening in your case.