mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Fix Safari not working not working (Untested). Fix cached download links not proxying the torrent download.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user