@deathnaitsa/wa-api 1.0.36 → 1.0.37
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/dist/Socket/index.js +1 -1
- package/package.json +1 -1
package/dist/Socket/index.js
CHANGED
|
@@ -304,7 +304,7 @@ async function loadSessionsFromStorage() {
|
|
|
304
304
|
const entries = await fs_1.default.promises.readdir(dirPath);
|
|
305
305
|
|
|
306
306
|
for (const entry of entries) {
|
|
307
|
-
const fullPath = path_1.default.
|
|
307
|
+
const fullPath = path_1.default.join(dirPath, entry);
|
|
308
308
|
let stat;
|
|
309
309
|
try {
|
|
310
310
|
stat = await fs_1.default.promises.stat(fullPath);
|