music: fix m3u windows volume detection

This commit is contained in:
Alexander Capehart 2024-01-01 21:36:46 -07:00
parent 399237d2fe
commit 32432b18b6
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47

View file

@ -262,6 +262,6 @@ class M3UImpl @Inject constructor(@ApplicationContext private val context: Conte
}
private companion object {
val WINDOWS_VOLUME_PREFIX_REGEX = Regex("^[A-Za-z]:\\\\*")
val WINDOWS_VOLUME_PREFIX_REGEX = Regex("^[A-Za-z]:\\\\.*")
}
}