From 6ae1195c386638a993bd01c15ba2811de4858c0b Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 3 Mar 2021 19:12:10 +0200 Subject: [PATCH] missing file from a467bab return hashed appName of opened tab eg. to set notifcation counter --- api/js/framework/fw_base.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/js/framework/fw_base.js b/api/js/framework/fw_base.js index 123d5f272b..b8c069fd93 100644 --- a/api/js/framework/fw_base.js +++ b/api/js/framework/fw_base.js @@ -717,7 +717,7 @@ var fw_base = (function(){ "use strict"; return Class.extend( if (this.applications[appname]) { this.setActiveApp(this.applications[appname]); - return; + return appname; } var self = this; // add target flag @@ -750,6 +750,8 @@ var fw_base = (function(){ "use strict"; return Class.extend( })); this._setTabAppsSession(this.tabApps); + + return appname; } else {