Merge pull request #31 from AgentK20/tag-nre-fix
Fix ArgumentNullException when channel has no tags
This commit is contained in:
@@ -126,7 +126,9 @@ namespace Jellyfin.Plugin.TubeArchivistMetadata.TubeArchivist
|
|||||||
Type = ImageType.Primary
|
Type = ImageType.Primary
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
Tags = this.Tags.ToArray<string>()
|
Tags = this.Tags != null ?
|
||||||
|
this.Tags.ToArray<string>() :
|
||||||
|
[]
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user