mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00:00
Disable cache in debug
This commit is contained in:
parent
41f99dd793
commit
eedccf03b6
1 changed files with 5 additions and 0 deletions
|
@ -54,6 +54,11 @@ public Response ProcessStaticResourceRequest(NancyContext context, string workin
|
||||||
response.Headers.EnableCache();
|
response.Headers.EnableCache();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else
|
||||||
|
{
|
||||||
|
response.Headers.DisableCache();
|
||||||
|
}
|
||||||
|
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue