Merge branch 'bug/unzip-firefox' into 'dev'

Fix ajax issue with unzip on firefox

See merge request crafty-controller/crafty-4!393
This commit is contained in:
Iain Powrie 2022-07-05 23:01:13 +00:00
commit c7c50fcc5b
2 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,7 @@ None
- Remove redundant path check on backup restore ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/390))
- Fix issue with stats pinging on slow starting servers ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/391))
- Fix unhandled exeption when serverjars api returns 'None' ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/392))
- Fix ajax issue with unzip on firefox ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/393))
### Tweaks
None
### Lang

View File

@ -691,8 +691,10 @@
data: {
path: path
},
success: function (data) {
window.location.href = "/panel/server_detail?id=" + serverId + "&subpage=files";
},
});
window.location.href = "/panel/server_detail?id=" + serverId + "&subpage=files"
}
function sendFile(file, path, serverId, left, onProgress) {