Correctly handle the possibility of a null-deserialized tags

This commit is contained in:
AgentK
2024-12-01 11:09:53 -06:00
parent a45ef87f84
commit 6697f2b4cc
@@ -126,7 +126,7 @@ namespace Jellyfin.Plugin.TubeArchivistMetadata.TubeArchivist
Type = ImageType.Primary
}
},
Tags = this.Tags.ToArray<string>()
Tags = this.Tags != null ? this.Tags.ToArray<string>() : []
};
}
}