diff --git a/NzbDrone.Api/Frontend/IsCacheableSpecification.cs b/NzbDrone.Api/Frontend/IsCacheableSpecification.cs index f8d8b20b7..a86768495 100644 --- a/NzbDrone.Api/Frontend/IsCacheableSpecification.cs +++ b/NzbDrone.Api/Frontend/IsCacheableSpecification.cs @@ -13,6 +13,11 @@ public class CacheableSpecification : ICacheableSpecification { public bool IsCacheable(NancyContext context) { + if (BuildInfo.IsDebug) + { + return false; + } + if (context.Request.Query.v == BuildInfo.Version) return true; if (context.Request.Path.StartsWith("/api", StringComparison.CurrentCultureIgnoreCase)) return false;