Remove prevention of CloudStorage on 9.40-10.40.

This commit is contained in:
Lawin0129
2023-01-24 22:54:51 +00:00
committed by GitHub
parent 9b2cafa9d2
commit a63f3a773e
+1 -5
View File
@@ -10,10 +10,6 @@ const functions = require("../structs/functions.js");
app.get("/fortnite/api/cloudstorage/system", verifyClient, async (req, res) => {
const memory = functions.GetVersionInfo(req);
if (memory.build >= 9.40 && memory.build <= 10.40) {
return res.status(404).end();
}
const dir = path.join(__dirname, "..", "CloudStorage")
var CloudFiles = [];
@@ -65,4 +61,4 @@ app.put("/fortnite/api/cloudstorage/user/*/*", verifyToken, async (req, res) =>
res.status(204).end();
})
module.exports = app;
module.exports = app;