mirror of
https://github.com/yattee/yattee.git
synced 2025-08-09 04:04:07 +00:00
Fix stream short quality
This commit is contained in:
@@ -168,12 +168,12 @@ class Stream: Equatable, Hashable, Identifiable {
|
||||
}
|
||||
|
||||
var shortQuality: String {
|
||||
if resolution.height == 2160 {
|
||||
if resolution?.height == 2160 {
|
||||
return "4K"
|
||||
} else if kind == .hls {
|
||||
return "HLS"
|
||||
} else {
|
||||
return resolution.name
|
||||
return resolution?.name ?? "?"
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user