mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: (Cardigann) Bump to v8
This commit is contained in:
@@ -2,7 +2,7 @@ using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Security.Cryptography;
|
||||
using System.Net;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using AngleSharp.Dom;
|
||||
@@ -680,6 +680,12 @@ namespace NzbDrone.Core.Indexers.Cardigann
|
||||
case "urlencode":
|
||||
data = data.UrlEncode(_encoding);
|
||||
break;
|
||||
case "htmldecode":
|
||||
data = WebUtility.HtmlDecode(data);
|
||||
break;
|
||||
case "htmlencode":
|
||||
data = WebUtility.HtmlEncode(data);
|
||||
break;
|
||||
case "timeago":
|
||||
case "reltime":
|
||||
data = DateTimeUtil.FromTimeAgo(data).ToString(DateTimeUtil.Rfc1123ZPattern);
|
||||
|
Reference in New Issue
Block a user