fix: Marked Radarr studios as nullable to prevent crashes

This commit is contained in:
2025-08-07 20:05:05 -06:00
parent 02870043ec
commit f08f255a46
8 changed files with 26 additions and 13 deletions
+1 -1
View File
@@ -308,7 +308,7 @@ pub struct Movie {
pub status: String,
pub overview: String,
pub path: String,
pub studio: String,
pub studio: Option<String>,
pub genres: Vec<String>,
#[serde(deserialize_with = "super::from_i64")]
pub year: i64,