We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c42b461 + 86ab79b commit 4d59f7bCopy full SHA for 4d59f7b
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