Fix Safari not working not working (Untested). Fix cached download links not proxying the torrent download.

This commit is contained in:
KZ
2015-08-05 23:00:09 +01:00
parent d70b4412ed
commit bcc0b5b6bf
22 changed files with 274 additions and 18791 deletions

View File

@@ -1,4 +1,5 @@
using Autofac;
using AutoMapper;
using Jackett.Indexers;
using Jackett.Models;
using Jackett.Services;
@@ -375,7 +376,8 @@ namespace Jackett.Controllers
[HttpGet]
public List<TrackerCacheResult> GetCache()
{
return cacheService.GetCachedResults();
var severUrl = string.Format("{0}://{1}:{2}/", Request.RequestUri.Scheme, Request.RequestUri.Host, Request.RequestUri.Port);
return cacheService.GetCachedResults(severUrl);
}
}
}