We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89d5fa1 commit b13ab8eCopy full SHA for b13ab8e
ATL/AudioData/AudioDataManager.cs
@@ -256,7 +256,13 @@ public ISet<TagType> getRecommendedMetas()
256
if (1 == supportedMetas.Count) result.Add(supportedMetas[0]);
257
else
258
{
259
- if (audioDataIO is OptimFrog) result.Add(TagType.APE); // TODO this is ugly (see #249)
+ // TODO this is ugly (see #249)
260
+ if (audioDataIO is OptimFrog) result.Add(TagType.APE);
261
+ else if (audioDataIO is WAV)
262
+ {
263
+ result.Add(TagType.ID3V2);
264
+ result.Add(TagType.NATIVE);
265
+ }
266
267
268
var id3v2Exists = supportedMetas.Contains(TagType.ID3V2);
0 commit comments