add support for aif, aifc, aiff (#2325)

* adds .aiff to supported audio file extension in local folder scanner

* add support for aif, aifc, aiff

---------

Co-authored-by: Jason Dove <1695733+jasongdove@users.noreply.github.com>
This commit is contained in:
khreezy
2025-09-07 19:24:43 +00:00
committed by GitHub
co-authored by Jason Dove
parent 906ec44a6e
commit cb78b21d1c
3 changed files with 11 additions and 2 deletions
@@ -25,8 +25,8 @@ public abstract class LocalFolderScanner
public static readonly ImmutableHashSet<string> AudioFileExtensions = new[]
{
".aac", ".alac", ".dff", ".dsf", ".flac", ".mp3", ".m4a", ".ogg", ".opus", ".oga", ".ogx", ".spx", ".wav",
".wma"
".aac", ".aif", ".aifc", ".aiff", ".alac", ".dff", ".dsf", ".flac", ".mp3",
".m4a", ".ogg", ".opus", ".oga", ".ogx", ".spx", ".wav", ".wma"
}.ToImmutableHashSet(StringComparer.OrdinalIgnoreCase);
public static readonly ImmutableHashSet<string> ImageFileExtensions = new[]