diff --git a/DailyDesktop.Core.Providers.Pixiv/PixivProvider.cs b/DailyDesktop.Core.Providers.Pixiv/PixivProvider.cs index 820b66c..7248fac 100644 --- a/DailyDesktop.Core.Providers.Pixiv/PixivProvider.cs +++ b/DailyDesktop.Core.Providers.Pixiv/PixivProvider.cs @@ -62,7 +62,7 @@ public WallpaperInfo GetWallpaperInfo() string authorUri = $"https://www.pixiv.net/users/{authorIdMatch.Value}"; Match descriptionMatch = Regex.Match(imagePageHtml, DESCRIPTION_PATTERN); - string description = descriptionMatch.Value; + string description = WebUtility.HtmlDecode(descriptionMatch.Value); // Download illustration from image URI and return its local path, // which is necessary because pixiv blocks requests if the Referer