aboutsummaryrefslogtreecommitdiffstats
path: root/recipes
diff options
context:
space:
mode:
Diffstat (limited to 'recipes')
-rw-r--r--recipes/office365-owa/package.json2
-rw-r--r--recipes/office365-owa/webview.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes/office365-owa/package.json b/recipes/office365-owa/package.json
index b714e11..08bbb59 100644
--- a/recipes/office365-owa/package.json
+++ b/recipes/office365-owa/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "office365-owa", 2 "id": "office365-owa",
3 "name": "Office 365 Outlook", 3 "name": "Office 365 Outlook",
4 "version": "1.7.1", 4 "version": "1.7.2",
5 "license": "MIT", 5 "license": "MIT",
6 "aliases": [ 6 "aliases": [
7 "live.com", 7 "live.com",
diff --git a/recipes/office365-owa/webview.js b/recipes/office365-owa/webview.js
index 0a0d2f3..8deff39 100644
--- a/recipes/office365-owa/webview.js
+++ b/recipes/office365-owa/webview.js
@@ -37,7 +37,7 @@ module.exports = (Ferdium, settings) => {
37 directUnreadCount = 37 directUnreadCount =
38 settings.onlyShowFavoritesInUnreadCount === true 38 settings.onlyShowFavoritesInUnreadCount === true
39 ? collectCounts('div[role=tree]:nth-child(2)') 39 ? collectCounts('div[role=tree]:nth-child(2)')
40 : collectCounts('div[role=tree]:nth-child(3)'); 40 : collectCounts('div[role=tree]:nth-child(1)');
41 41
42 indirectUnreadCount = collectCounts('div[role=tree]:nth-child(4)'); // groups 42 indirectUnreadCount = collectCounts('div[role=tree]:nth-child(4)'); // groups
43 } 43 }