We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b913c76 + 6c752b3 commit 797dd84Copy full SHA for 797dd84
stroom-core-client/src/main/java/stroom/dispatch/client/ExportFileCompleteUtil.java
@@ -80,10 +80,11 @@ private static String getMessage(final ResourceGeneration result) {
80
}
81
82
private static void download(final LocationManager locationManager, final ResourceGeneration result) {
83
- // Change the browser location to download the zip
84
- // file.
+ // Change the browser location to download the zip file.
85
locationManager.replace(GWT.getHostPageBaseURL() +
86
- "resourcestore/?uuid=" +
+ "resourcestore/" +
+ result.getResourceKey().getName() +
87
+ "?uuid=" +
88
result.getResourceKey().getKey());
89
90
0 commit comments