♿ use fs sync for backwards compatibility
This commit is contained in:
parent
9c6a33c9d9
commit
cce9358d85
@ -1,5 +1,5 @@
|
|||||||
import "missing-native-js-functions";
|
import "missing-native-js-functions";
|
||||||
import fs from "fs/promises";
|
import fs from "fs";
|
||||||
import { Connection } from "mongoose";
|
import { Connection } from "mongoose";
|
||||||
import { Server, ServerOptions } from "lambert-server";
|
import { Server, ServerOptions } from "lambert-server";
|
||||||
import { Authentication, CORS } from "./middlewares/";
|
import { Authentication, CORS } from "./middlewares/";
|
||||||
@ -70,8 +70,8 @@ export class FosscordServer extends Server {
|
|||||||
this.app.use(CORS);
|
this.app.use(CORS);
|
||||||
this.app.use(Authentication);
|
this.app.use(Authentication);
|
||||||
this.app.use(BodyParser({ inflate: true, limit: 1024 * 1024 * 2 }));
|
this.app.use(BodyParser({ inflate: true, limit: 1024 * 1024 * 2 }));
|
||||||
const languages = await fs.readdir(path.join(__dirname, "..", "locales"));
|
const languages = fs.readdirSync(path.join(__dirname, "..", "locales"));
|
||||||
const namespaces = await fs.readdir(path.join(__dirname, "..", "locales", "en"));
|
const namespaces = fs.readdirSync(path.join(__dirname, "..", "locales", "en"));
|
||||||
const ns = namespaces.filter((x) => x.endsWith(".json")).map((x) => x.slice(0, x.length - 5));
|
const ns = namespaces.filter((x) => x.endsWith(".json")).map((x) => x.slice(0, x.length - 5));
|
||||||
|
|
||||||
await i18next
|
await i18next
|
||||||
|
Loading…
x
Reference in New Issue
Block a user