From 562a30655d02c0da56ec1d73b97e75065c708751 Mon Sep 17 00:00:00 2001 From: Dani Palou Date: Fri, 11 Jun 2021 12:16:18 +0200 Subject: [PATCH] MOBILE-3320 app: Remove StatusBar warnings in browser --- src/core/services/app.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/services/app.ts b/src/core/services/app.ts index 7febb968a..96454cc1b 100644 --- a/src/core/services/app.ts +++ b/src/core/services/app.ts @@ -629,6 +629,10 @@ export class CoreAppProvider { * @param color RGB color to use as status bar background. If not set the css variable will be read. */ setStatusBarColor(color?: string): void { + if (!this.isMobile()) { + return; + } + if (!color) { // Get the default color to change it. const element = document.querySelector('ion-header ion-toolbar');