aboutsummaryrefslogtreecommitdiffstats
path: root/recipes
diff options
context:
space:
mode:
authorLibravatar Ujp8LfXBJ6wCPR <github@lillecarl.com>2024-01-08 00:36:06 +0100
committerLibravatar GitHub <noreply@github.com>2024-01-07 23:36:06 +0000
commitfadf8f000bdcaf6ec8fcad5aa818fcca6fa1f331 (patch)
tree69ec3694452dab6e85c5b8e90da029ae1347cfde /recipes
parentupdate template PR (#469) (diff)
downloadferdium-recipes-fadf8f000bdcaf6ec8fcad5aa818fcca6fa1f331.tar.gz
ferdium-recipes-fadf8f000bdcaf6ec8fcad5aa818fcca6fa1f331.tar.zst
ferdium-recipes-fadf8f000bdcaf6ec8fcad5aa818fcca6fa1f331.zip
Office365: Fix selector for "Folders" (#483)
* Office365: Fix selector for "Folders" * Update versioning --------- Co-authored-by: Carl Hjerpe <git@hjerpe.xyz> Co-authored-by: André Oliveira <37463445+SpecialAro@users.noreply.github.com>
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 }