mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Fixed: Don't handle content requests in IndexHtmlMapper
This commit is contained in:
parent
95bc93042c
commit
72a12a73af
@ -49,7 +49,11 @@ public override string Map(string resourceUrl)
|
|||||||
|
|
||||||
public override bool CanHandle(string resourceUrl)
|
public override bool CanHandle(string resourceUrl)
|
||||||
{
|
{
|
||||||
return !resourceUrl.Contains(".") && !resourceUrl.StartsWith("/login");
|
resourceUrl = resourceUrl.ToLowerInvariant();
|
||||||
|
|
||||||
|
return !resourceUrl.StartsWith("/content") &&
|
||||||
|
!resourceUrl.Contains(".") &&
|
||||||
|
!resourceUrl.StartsWith("/login");
|
||||||
}
|
}
|
||||||
|
|
||||||
public override Response GetResponse(string resourceUrl)
|
public override Response GetResponse(string resourceUrl)
|
||||||
@ -113,4 +117,4 @@ private string GetIndexText()
|
|||||||
return _generatedContent;
|
return _generatedContent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Nancy.Responses;
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using Nancy;
|
using Nancy;
|
||||||
using NzbDrone.Api.Frontend.Mappers;
|
using NzbDrone.Api.Frontend.Mappers;
|
||||||
|
Loading…
Reference in New Issue
Block a user