core: add rss url decode in download controller. resolves #4617 #6589 #4760 #6397 #5752 (#6936)

This commit is contained in:
Diego Heras
2020-01-12 19:14:36 +01:00
committed by garfield69
parent 92556a56c6
commit 7a1c8f9419
2 changed files with 36 additions and 0 deletions

View File

@@ -10,10 +10,12 @@ using NLog;
using System;
using System.Text;
using System.Threading.Tasks;
using Jackett.Server.ActionFilters;
namespace Jackett.Server.Controllers
{
[AllowAnonymous]
[DownloadActionFilter]
[ResponseCache(Location = ResponseCacheLocation.None, NoStore = true)]
[Route("dl/{indexerID}")]
public class DownloadController : Controller