Skip to content

Commit

Permalink
Bump version to 1.0.149.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrhid6 committed Aug 21, 2024
1 parent e920946 commit a9baf2f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.0.149 (August 21, 2024)


## 1.0.148 (August 21, 2024)
- fix: Fixes to outdated dep

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.148
1.0.149
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "SSMCloud",
"version": "1.0.148",
"version": "1.0.149",
"exports": "./src/index.js",
"repository": "[email protected]:SatisfactoryServerManager/SSMCloud.git",
"author": "Mrhid6 <[email protected]>",
Expand Down
3 changes: 3 additions & 0 deletions src/server/controllers/dashboard/download.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export async function getDownloadBackup(req, res, next) {
}/download/backup/${uuid}`;

const { data } = await axios.get(url, {
validateStatus: false,
responseType: "stream",
headers: { "x-ssm-jwt": req.session.token },
});
Expand Down Expand Up @@ -71,6 +72,7 @@ export async function getDownloadSave(req, res, next) {
}/download/save/${uuid}`;

const { data } = await axios.get(url, {
validateStatus: false,
responseType: "stream",
headers: { "x-ssm-jwt": req.session.token },
});
Expand Down Expand Up @@ -112,6 +114,7 @@ export async function getDownloadLog(req, res, next) {
}/download/log/${type}`;

const { data } = await axios.get(url, {
validateStatus: false,
responseType: "stream",
headers: { "x-ssm-jwt": req.session.token },
});
Expand Down

0 comments on commit a9baf2f

Please sign in to comment.