TEST - Connection check skipped

This commit is contained in:
CappielloAntonio 2021-08-23 23:07:12 +02:00
parent 340385aa85
commit cd1a3d8c30

View file

@ -15,7 +15,7 @@ public class CacheUtil {
public static Interceptor offlineInterceptor = chain -> {
Request request = chain.request();
if (!false) {
if (!true) {
int maxStale = 60 * 60 * 24 * 30;
request = request.newBuilder()
.header("Cache-Control", "public, only-if-cached, max-stale=" + maxStale)