Skip to content

Commit 1b5414a

Browse files
committed
added trailing slash
1 parent 7519e03 commit 1b5414a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/redhat/victims/VictimsService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public RecordStream removed(Date since) throws IOException {
101101
*/
102102
protected RecordStream fetch(Date since, String type) throws IOException {
103103
SimpleDateFormat fmt = new SimpleDateFormat(VictimsRecord.DATE_FORMAT);
104-
String spec = FileUtils.getFile(serviceEntry, type, fmt.format(since))
104+
String spec = FileUtils.getFile(serviceEntry, type, fmt.format(since), "/")
105105
.toString();
106106
spec = FilenameUtils.normalize(spec, true);
107107
URL merged = new URL(new URL(baseURI), spec);

0 commit comments

Comments
 (0)