aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/skype/webview.js
diff options
context:
space:
mode:
authorLibravatar Anton Sudak <anton.sudak@gmail.com>2021-11-26 11:34:00 +0200
committerLibravatar GitHub <noreply@github.com>2021-11-26 15:04:00 +0530
commit5d0a8c596bac2776b0d9fdccadc308a2ac91b58d (patch)
tree976136dafeb6360cb2d331ad3d533c9f4481ff17 /recipes/skype/webview.js
parentFix Protonmail unread counter (#773) (diff)
downloadferdium-recipes-5d0a8c596bac2776b0d9fdccadc308a2ac91b58d.tar.gz
ferdium-recipes-5d0a8c596bac2776b0d9fdccadc308a2ac91b58d.tar.zst
ferdium-recipes-5d0a8c596bac2776b0d9fdccadc308a2ac91b58d.zip
Fix skype notification counter for non-English locales(fixes #763) (#775)
Diffstat (limited to 'recipes/skype/webview.js')
-rw-r--r--recipes/skype/webview.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/skype/webview.js b/recipes/skype/webview.js
index d9775dd..7c07ee1 100644
--- a/recipes/skype/webview.js
+++ b/recipes/skype/webview.js
@@ -5,7 +5,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
5module.exports = (Ferdi, settings) => { 5module.exports = (Ferdi, settings) => {
6 const getMessages = () => { 6 const getMessages = () => {
7 let count = 0; 7 let count = 0;
8 const container = document.querySelector('[role="tablist"] > [title="Chats"] > div'); 8 const container = document.querySelector('[role="tablist"] > button > div');
9 9
10 if (container) { 10 if (container) {
11 const children = container.children; 11 const children = container.children;