From fadf8f000bdcaf6ec8fcad5aa818fcca6fa1f331 Mon Sep 17 00:00:00 2001 From: Ujp8LfXBJ6wCPR Date: Mon, 8 Jan 2024 00:36:06 +0100 Subject: Office365: Fix selector for "Folders" (#483) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Office365: Fix selector for "Folders" * Update versioning --------- Co-authored-by: Carl Hjerpe Co-authored-by: André Oliveira <37463445+SpecialAro@users.noreply.github.com> --- recipes/office365-owa/package.json | 2 +- recipes/office365-owa/webview.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'recipes') 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 @@ { "id": "office365-owa", "name": "Office 365 Outlook", - "version": "1.7.1", + "version": "1.7.2", "license": "MIT", "aliases": [ "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) => { directUnreadCount = settings.onlyShowFavoritesInUnreadCount === true ? collectCounts('div[role=tree]:nth-child(2)') - : collectCounts('div[role=tree]:nth-child(3)'); + : collectCounts('div[role=tree]:nth-child(1)'); indirectUnreadCount = collectCounts('div[role=tree]:nth-child(4)'); // groups } -- cgit v1.2.3-54-g00ecf