Skip to content

Commit

Permalink
scanner recognizes ogg
Browse files Browse the repository at this point in the history
  • Loading branch information
kindaconfusion authored Mar 11, 2024
1 parent 4eaa45d commit 72d7d5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Melon/LocalClasses/MelonScanner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,7 @@ private static bool IsAudioFile(string path)
{
var filename = Path.GetFileName(path);
if (!filename.EndsWith(".flac") && !filename.EndsWith(".aac") && !filename.EndsWith(".wma") &&
!filename.EndsWith(".wav") && !filename.EndsWith(".mp3") && !filename.EndsWith(".m4a"))
!filename.EndsWith(".wav") && !filename.EndsWith(".mp3") && !filename.EndsWith(".m4a") && !filename.EndsWith(".ogg"))
{
return false;
}
Expand Down

0 comments on commit 72d7d5c

Please sign in to comment.