Skip to content

Commit b13ab8e

Browse files
committed
WAV : Now defaults to ID3v2 _and_ Native tagging [#299]
1 parent 89d5fa1 commit b13ab8e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

ATL/AudioData/AudioDataManager.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,13 @@ public ISet<TagType> getRecommendedMetas()
256256
if (1 == supportedMetas.Count) result.Add(supportedMetas[0]);
257257
else
258258
{
259-
if (audioDataIO is OptimFrog) result.Add(TagType.APE); // TODO this is ugly (see #249)
259+
// 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+
}
260266
else
261267
{
262268
var id3v2Exists = supportedMetas.Contains(TagType.ID3V2);

0 commit comments

Comments
 (0)