mirror of
https://github.com/Radarr/Radarr
synced 2025-12-08 01:15:15 +01:00
Fixed: Calender .ics feed
[common]
This commit is contained in:
parent
5fb6b44950
commit
147cfe538a
2 changed files with 2 additions and 2 deletions
|
|
@ -41,7 +41,7 @@ public IActionResult IndexContent([FromRoute] string path)
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("")]
|
[HttpGet("")]
|
||||||
[HttpGet("/{**path:regex(^(?!api/).*)}")]
|
[HttpGet("/{**path:regex(^(?!(api|feed)/).*)}")]
|
||||||
public IActionResult Index([FromRoute] string path)
|
public IActionResult Index([FromRoute] string path)
|
||||||
{
|
{
|
||||||
return MapResource(path);
|
return MapResource(path);
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ public VersionedFeedControllerAttribute(int version, string resource = "[control
|
||||||
public int Version { get; private set; }
|
public int Version { get; private set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class V3FeedControllerAttribute : VersionedApiControllerAttribute
|
public class V3FeedControllerAttribute : VersionedFeedControllerAttribute
|
||||||
{
|
{
|
||||||
public V3FeedControllerAttribute(string resource = "[controller]")
|
public V3FeedControllerAttribute(string resource = "[controller]")
|
||||||
: base(3, resource)
|
: base(3, resource)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue