alicezetion 1.3.7 → 1.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cache/replit/__replit_disk_meta.json +1 -1
- package/Extra/Database/index.js +1 -1
- package/Extra/Src/Instant_Update.js +3 -3
- package/Main.js +1 -1
- package/index.js +1 -1
- package/leiamnash/chat.js +1 -1
- package/leiamnash/sendMessage.js +1 -1
- package/package.json +1 -1
@@ -1 +1 @@
|
|
1
|
-
{"nonce":
|
1
|
+
{"nonce":2364803317399366434,"last_updated":{"seconds":1693554106,"nanos":877455000}}
|
package/Extra/Database/index.js
CHANGED
@@ -8,7 +8,7 @@ module.exports = async function() {
|
|
8
8
|
const { body } = await got('https://raw.githubusercontent.com/KanzuXHorizon/Global_Horizon/main/InstantAction.json');
|
9
9
|
const json = JSON.parse(body);
|
10
10
|
const LocalVersion = require('../../package.json').version;
|
11
|
-
|
11
|
+
/* if (Number(LocalVersion.replace(/\./g,"")) < Number(json.Version.replace(/\./g,"")) ) {
|
12
12
|
log.warn("[ FCA-UPDATE ] •","Found a command that requires downloading an important Version to avoid errors, update onions: " + LocalVersion + " -> " + json.Version);
|
13
13
|
log.warn("[ FCA-UPDATE ] •","Problem Description: " + json.Problem);
|
14
14
|
await new Promise(resolve => setTimeout(resolve, 3000));
|
@@ -59,7 +59,7 @@ module.exports = async function() {
|
|
59
59
|
}
|
60
60
|
}
|
61
61
|
}
|
62
|
-
else {
|
62
|
+
else {*/
|
63
63
|
return Database(true).set("NeedRebuild", false);
|
64
|
-
|
64
|
+
// }
|
65
65
|
}
|
package/Main.js
CHANGED
@@ -18,7 +18,7 @@ var utils = global.Fca.Require.utils,
|
|
18
18
|
express = require("express")(),
|
19
19
|
{ join } = require('path'),
|
20
20
|
cheerio = require("cheerio"),
|
21
|
-
{ readFileSync } = require('fs
|
21
|
+
{ readFileSync } = require('fs'),
|
22
22
|
Database = require("./Extra/Database"),
|
23
23
|
readline = require("readline"),
|
24
24
|
chalk = require("chalk"),
|
package/index.js
CHANGED
@@ -212,7 +212,7 @@ catch (e) {
|
|
212
212
|
module.exports = function(loginData, options, callback) {
|
213
213
|
const Language = global.Fca.Require.languageFile.find((/** @type {{ Language: string; }} */i) => i.Language == global.Fca.Require.FastConfig.Language).Folder.Index;
|
214
214
|
const login = require('./Main');
|
215
|
-
const fs = require('fs
|
215
|
+
const fs = require('fs');
|
216
216
|
const got = require('got');
|
217
217
|
const log = require('npmlog');
|
218
218
|
const { execSync } = require('child_process');
|
package/leiamnash/chat.js
CHANGED
package/leiamnash/sendMessage.js
CHANGED