diff --git a/AnimeAnnouncer/Program.cs b/AnimeAnnouncer/Program.cs index 3819a9a..95433ed 100644 --- a/AnimeAnnouncer/Program.cs +++ b/AnimeAnnouncer/Program.cs @@ -212,7 +212,12 @@ namespace AnimeAnnouncer attachment = await mastodonClient.UploadMedia(postMedia); } //Prepare Status - String statusText = $"{cachedShow.Title} has finished airing season {cachedShow.LatestSeasonNumber}! Episode {cachedShow.LastEpisodeNumber} is now available for download. {Environment.NewLine + Environment.NewLine}Overview: {cachedShow.LatestSeasonOverview ?? cachedShow.Overview}"; + String statusText = $"{cachedShow.Title} ({cachedShow.VoteAverage}/10) DUBBED has finished airing season {cachedShow.LatestSeasonNumber}! Episode {cachedShow.LastEpisodeNumber} is now available for download. {Environment.NewLine + Environment.NewLine}"; + String overview = !String.IsNullOrWhiteSpace(cachedShow.LatestSeasonOverview) ? cachedShow.LatestSeasonOverview : cachedShow.Overview; + if(!String.IsNullOrWhiteSpace(overview)) + { + statusText += $"Overview: {overview}"; + } if(statusText.Length >= 500) { statusText = statusText[..497] + "..";