We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 70f04c3 + 77410a0 commit 1d7646cCopy full SHA for 1d7646c
stroom-core-client/src/main/java/stroom/dispatch/client/ExportFileCompleteUtil.java
@@ -74,10 +74,11 @@ private static String getMessage(final ResourceGeneration result) {
74
}
75
76
private static void download(final LocationManager locationManager, final ResourceGeneration result) {
77
- // Change the browser location to download the zip
78
- // file.
+ // Change the browser location to download the zip file.
79
locationManager.replace(GWT.getHostPageBaseURL() +
80
- "resourcestore/?uuid=" +
+ "resourcestore/" +
+ result.getResourceKey().getName() +
81
+ "?uuid=" +
82
result.getResourceKey().getKey());
83
84
0 commit comments