mirror of https://github.com/lidarr/Lidarr
Fixed: Disable caching of iCal
This commit is contained in:
parent
412291a7c4
commit
1b5ed1d641
|
@ -23,6 +23,7 @@ namespace NzbDrone.Api.Frontend
|
|||
if (context.Request.Path.StartsWith("/api", StringComparison.CurrentCultureIgnoreCase)) return false;
|
||||
if (context.Request.Path.StartsWith("/signalr", StringComparison.CurrentCultureIgnoreCase)) return false;
|
||||
if (context.Request.Path.EndsWith("main.js")) return false;
|
||||
if (context.Request.Path.StartsWith("/feed", StringComparison.CurrentCultureIgnoreCase)) return false;
|
||||
|
||||
if (context.Request.Path.StartsWith("/log", StringComparison.CurrentCultureIgnoreCase) &&
|
||||
context.Request.Path.EndsWith(".txt", StringComparison.CurrentCultureIgnoreCase))
|
||||
|
|
Loading…
Reference in New Issue