Skip to content

Commit

Permalink
Merge pull request #220 from scireum/feature/jvo/issues/207
Browse files Browse the repository at this point in the history
Fix: UI Downloads
  • Loading branch information
jakobvogel committed Feb 24, 2023
2 parents 7d62710 + b800b18 commit 391b6ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ninja/NinjaController.java
Expand Up @@ -296,7 +296,7 @@ public void object(WebContext webContext, String bucketName, List<String> idPart
return;
}

Response response = webContext.respondWith();
Response response = webContext.respondWith().named(object.getKey());
for (Map.Entry<String, String> entry : object.getProperties().entrySet()) {
response.addHeader(entry.getKey(), entry.getValue());
}
Expand Down

0 comments on commit 391b6ce

Please sign in to comment.