1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00

Fixed: UI hanging after scrolling movie list too fast

[common]
This commit is contained in:
ta264
2020-09-29 21:46:04 +01:00
committed by Qstick
parent d1bebd3e5b
commit f90211b0d3
6 changed files with 55 additions and 28 deletions
@@ -1,4 +1,5 @@
using Nancy;
using System.Threading.Tasks;
using Nancy;
namespace Radarr.Http.Frontend.Mappers
{
@@ -6,6 +7,6 @@ namespace Radarr.Http.Frontend.Mappers
{
string Map(string resourceUrl);
bool CanHandle(string resourceUrl);
Response GetResponse(string resourceUrl);
Task<Response> GetResponse(string resourceUrl);
}
}