Changeset 35059 in osm for applications/editors/josm/plugins/http2/src/org
- Timestamp:
- 2019-07-09T01:50:59+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/http2/src/org/openstreetmap/josm/plugins/http2/Http2Client.java
r35058 r35059 58 58 if (getIfModifiedSince() > 0) { 59 59 requestBuilder.header("If-Modified-Since", DateTimeFormatter.RFC_1123_DATE_TIME.format( 60 LocalDateTime.ofEpochSecond(getIfModifiedSince() , 0, ZoneOffset.UTC)));60 LocalDateTime.ofEpochSecond(getIfModifiedSince() / 1000, 0, ZoneOffset.UTC))); 61 61 } 62 62 if (!isUseCache()) {
Note:
See TracChangeset
for help on using the changeset viewer.