Skip to content

Commit

Permalink
fix(core.gbapp): Operator fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Apr 3, 2020
1 parent b6e3611 commit 0b55ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core.gbapp/services/GBImporterService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class GBImporter {
}
const instance = await this.core.loadInstance(botId);

if (instance != null || instance.botId === null) {
if (instance != null && instance.botId === null) {
console.log(`Null BotId after load instance with botId: ${botId}.`);
}

Expand Down

0 comments on commit 0b55ad8

Please sign in to comment.