mirror of
https://github.com/ApfelTeeSaft/LawinServerV2.git
synced 2026-08-26 19:23:39 +00:00
Remove prevention of CloudStorage on 9.40-10.40.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user