another NullPointerException in http.ResourceInfo

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2510 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
hermens 19 years ago
parent 141f9e5bb4
commit 7aeadbe7cc

@ -351,19 +351,19 @@ public class ResourceInfo implements IResourceInfo {
// finally, we shall treat the cache as stale if the modification time is after the if-.. time // finally, we shall treat the cache as stale if the modification time is after the if-.. time
if (d2.after(d1)) { return false; } if (d2.after(d1)) { return false; }
} }
}
String mimeType = this.getMimeType(); String mimeType = this.getMimeType();
if (!plasmaHTCache.isPicture(mimeType)) { if (!plasmaHTCache.isPicture(mimeType)) {
// -cookies in request // -cookies in request
// unfortunately, we should reload in case of a cookie // unfortunately, we should reload in case of a cookie
// but we think that pictures can still be considered as fresh // but we think that pictures can still be considered as fresh
// -set-cookie in cached response // -set-cookie in cached response
// this is a similar case as for COOKIE. // this is a similar case as for COOKIE.
if (this.requestHeader.containsKey(httpHeader.COOKIE) || if (this.requestHeader.containsKey(httpHeader.COOKIE) ||
this.responseHeader.containsKey(httpHeader.SET_COOKIE) || this.responseHeader.containsKey(httpHeader.SET_COOKIE) ||
this.responseHeader.containsKey(httpHeader.SET_COOKIE2)) { this.responseHeader.containsKey(httpHeader.SET_COOKIE2)) {
return false; // too strong return false; // too strong
}
} }
} }

Loading…
Cancel
Save