Fix:Syncing when media is open in audio player and playing on another device #984

- Local playback session IDs have been updated to UUIDs instead of prefixing local_play_
This commit is contained in:
advplyr
2023-12-15 16:05:19 -06:00
parent dd66042766
commit 7412d0899f
5 changed files with 13 additions and 15 deletions
+1 -2
View File
@@ -14,6 +14,7 @@ struct NowPlayingMetadata {
var title: String
var author: String?
var series: String?
var isLocal: Bool
var coverUrl: URL? {
if self.isLocal {
@@ -25,8 +26,6 @@ struct NowPlayingMetadata {
return url
}
}
var isLocal: Bool { id.starts(with: "play_local_") }
}
class NowPlayingInfo {