diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2021-10-03 18:36:12 +0200 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2021-10-03 18:48:14 +0200 |
commit | 8fe3b246a12d409b0819b574a050b64ca96ce251 (patch) | |
tree | da93ea8040d4d3029b5921b49fde19659827e841 /src/SocketIO | |
parent | 7bdce37fd3f18e2712e18c4e2c64cac69af0aca1 (diff) | |
download | Luxcena-Neo-8fe3b246a12d409b0819b574a050b64ca96ce251.tar.gz Luxcena-Neo-8fe3b246a12d409b0819b574a050b64ca96ce251.zip |
:boom: Change paths to be in normal linux locations
Diffstat (limited to 'src/SocketIO')
-rw-r--r-- | src/SocketIO/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SocketIO/index.js b/src/SocketIO/index.js index fdaad56..e20460d 100644 --- a/src/SocketIO/index.js +++ b/src/SocketIO/index.js @@ -8,7 +8,7 @@ * @since 19.12.2019 */ -let logger = require(__basedir + "/src/logger"); +let logger = require(__appdir + "/src/Logger"); var exec = require('child_process').exec; var CryptoJS = require("crypto-js"); let fs = require("fs"); @@ -350,4 +350,4 @@ module.exports = (_neoModules, io) => { authorizedNamespace: createAuthorizedNamespace(io) } }; -
\ No newline at end of file + |