Implements server selection UI

This commit is contained in:
2025-06-11 13:00:09 -07:00
parent 51048678bb
commit ca829dde4c
4 changed files with 115 additions and 21 deletions

View File

@@ -17,6 +17,10 @@ struct MediaItem: Codable
let playing: Bool?
let metadata: Metadata?
var displayTitle: String {
metadata?.title ?? title ?? filename ?? "item \(id)"
}
// MARK: - Types
struct Metadata: Codable