We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99eb2cf commit 9967812Copy full SHA for 9967812
src/main/java/org/sourcelab/hkp/parser/SearchIndexResponseParser.java
@@ -83,8 +83,8 @@ private Pub parsePub(final String line) throws IOException {
83
.withKeyId(fields.get(1))
84
.withAlgo(Integer.parseInt(fields.get(2)))
85
.withKeyLen(Integer.parseInt(fields.get(3)))
86
- .withCreationDate(Long.parseLong(fields.get(4)))
87
- .withExpirationDate(Long.parseLong(fields.get(5)))
+ .withCreationDate(fields.get(4))
+ .withExpirationDate(fields.get(5))
88
.withFlags(fields.get(6))
89
.build();
90
}
0 commit comments