diff --git a/packages/core/src/servient.ts b/packages/core/src/servient.ts index 8085c9216..1a9111dfc 100644 --- a/packages/core/src/servient.ts +++ b/packages/core/src/servient.ts @@ -213,7 +213,7 @@ export default class Servient { // will return WoT object public async start(): Promise { - if (this.#wotInstance != null) { + if (this.#wotInstance !== undefined) { debug("Servient started already -> nop -> returning previous WoT implementation"); return this.#wotInstance; }