Disable cache in debug

This commit is contained in:
Mark McDowall 2013-07-01 10:28:42 -07:00
commit eedccf03b6

View file

@ -54,6 +54,11 @@ namespace NzbDrone.Api.Frontend
response.Headers.EnableCache();
}
else
{
response.Headers.DisableCache();
}
return response;
}