Fixed typo that prevents m3u8 files to be scanned, ref #574

This commit is contained in:
emeric
2024-12-19 20:23:28 +01:00
parent 079acbdc17
commit 4c2be63e94
+1 -1
View File
@@ -28,7 +28,7 @@ namespace lms::metadata
{
std::span<const std::filesystem::path> getSupportedPlayListFileExtensions()
{
static const std::array<std::filesystem::path, 2> fileExtensions{ ".m3u", "m3u8" };
static const std::array<std::filesystem::path, 2> fileExtensions{ ".m3u", ".m3u8" };
return fileExtensions;
}