Skip to content

Commit

Permalink
Fix Queue Serialization error. QueueItem Details must be a serializab…
Browse files Browse the repository at this point in the history
…le type
  • Loading branch information
da3dsoul committed Oct 20, 2024
1 parent 7df1758 commit 723b20a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public override void PostInit()
{ "EpisodeID", AnimeEpisodeID }
} : new()
{
{ "Anime", RepoFactory.AniDB_Anime.GetByAnimeID(_episode.AnimeID) },
{ "Anime", RepoFactory.AniDB_Anime.GetByAnimeID(_episode.AnimeID)?.PreferredTitle },
{ "Episode Type", ((EpisodeType)_episode.EpisodeType).ToString() },
{ "Episode Number", _episode.EpisodeNumber },
{ "Sync Action", Action.ToString() }
Expand Down

0 comments on commit 723b20a

Please sign in to comment.