aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/yandex-mail/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/yandex-mail/webview.js')
-rw-r--r--recipes/yandex-mail/webview.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/yandex-mail/webview.js b/recipes/yandex-mail/webview.js
index 7a937a7..fff4602 100644
--- a/recipes/yandex-mail/webview.js
+++ b/recipes/yandex-mail/webview.js
@@ -2,8 +2,8 @@ module.exports = Ferdi => {
2 const getMessages = () => { 2 const getMessages = () => {
3 let count = 0; 3 let count = 0;
4 4
5 if (document.getElementsByClassName('mail-LabelList-Item_count').length > 1) { 5 if (document.querySelectorAll('.mail-LabelList-Item_count').length > 1) {
6 count = Ferdi.safeParseInt(document.getElementsByClassName('mail-LabelList-Item_count')[1].textContent); 6 count = Ferdi.safeParseInt(document.querySelectorAll('.mail-LabelList-Item_count')[1].textContent);
7 } 7 }
8 8
9 Ferdi.setBadge(count); 9 Ferdi.setBadge(count);