From 2b9575c3bcda357aefeae28dd394b88bba29d1a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Wed, 19 Oct 2022 15:10:50 +0200 Subject: [PATCH] forgot to open window when no credential is provided --- src/app/helpers/plugin.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/helpers/plugin.ts b/src/app/helpers/plugin.ts index 1b83a43..bad9eef 100644 --- a/src/app/helpers/plugin.ts +++ b/src/app/helpers/plugin.ts @@ -245,6 +245,8 @@ export class Plugin { } ); }); + } else { + openWindow(); // Open window } } else if (!data.running) { observer.next(true);