fix: Fixed breaking Sonarr Episode file API calls after recent Sonarr API update

This commit is contained in:
2025-12-12 09:17:36 -07:00
parent c4e8d64710
commit ae506789ab
4 changed files with 10 additions and 4 deletions
+1 -1
View File
@@ -215,7 +215,7 @@ pub struct EpisodeFile {
pub path: String,
#[serde(deserialize_with = "super::from_i64")]
pub size: i64,
pub languages: Vec<Language>,
pub languages: Vec<Option<Language>>,
pub quality: QualityWrapper,
pub date_added: DateTime<Utc>,
pub media_info: Option<MediaInfo>,