Fix audio track label showing "Original" instead of "Unknown"

Changed the default audio track content type from "Unknown" to "Original"
when the content type is not specified. This provides a more accurate
description for the default audio track.
This commit is contained in:
Arkadiusz Fal
2025-11-18 18:16:38 +01:00
parent 13d7a8d0a6
commit 49278e13cd

View File

@@ -203,7 +203,7 @@ class Stream: Equatable, Hashable, Identifiable {
}
var description: String {
"\(displayLanguage) (\(content ?? "Unknown"))"
"\(displayLanguage) (\(content ?? "Original"))"
}
var isDubbed: Bool {