We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 902aec7 commit e81516cCopy full SHA for e81516c
1 file changed
Controls/CRNewsPanel.cs
@@ -79,7 +79,6 @@ private async Task<NewsStorage> ParseLink(NewsStorage newsStorage)
79
Match calendarMatch = Regex.Match(pageBody.Replace("\r", "").Replace(" ", "").Replace("\n", ""), "<p class=\"is-5 is-uppercase\">(.*?)<");
80
Match userMatch = Regex.Match(pageBody, "\"author\": \"(.*)\"");
81
Match categoryMatch = Regex.Match(pageBody, "\"category tag\">(.*)<\\/a><\\/p>");
82
- Clipboard.SetText(pageBody.Replace("\r", "").Replace(" ", "").Replace("\n", ""));
83
84
if (titleMatch.Success && titleMatch.Groups[1].Success)
85
{
0 commit comments