Skip to content

Commit b9f6753

Browse files
Merge pull request #83 from moskoweb/patch-4
fix: DEL_INSTANCE
2 parents 7ade78b + 91c7b4f commit b9f6753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config/env.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ export class ConfigService {
225225
BAILEYS: (process.env?.LOG_BAILEYS as LogBaileys) || 'error',
226226
},
227227
DEL_INSTANCE: isBooleanString(process.env?.DEL_INSTANCE)
228-
? process.env.DEL_INSTANCE === 'true'
228+
? process.env.DEL_INSTANCE === 5
229229
: Number.parseInt(process.env.DEL_INSTANCE) || false,
230230
WEBHOOK: {
231231
GLOBAL: {

0 commit comments

Comments
 (0)