aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed
diff options
context:
space:
mode:
authorLibravatar Niklas Neesen <niklas.neesen@enghouse.com>2020-07-07 09:35:57 +0200
committerLibravatar Niklas Neesen <niklas.neesen@enghouse.com>2020-07-07 09:35:57 +0200
commitaf07a06978d3cf99f876d0dc216faed4cc9c2fbe (patch)
tree266078eae7fe7352cc41f6ebe58cc40031018528 /uncompressed
parentUpdate repository (diff)
downloadferdium-recipes-af07a06978d3cf99f876d0dc216faed4cc9c2fbe.tar.gz
ferdium-recipes-af07a06978d3cf99f876d0dc216faed4cc9c2fbe.tar.zst
ferdium-recipes-af07a06978d3cf99f876d0dc216faed4cc9c2fbe.zip
Fixing unread-counter for office365
Diffstat (limited to 'uncompressed')
-rw-r--r--uncompressed/office365-owa/package.json2
-rw-r--r--uncompressed/office365-owa/webview.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/uncompressed/office365-owa/package.json b/uncompressed/office365-owa/package.json
index c68f5d0..1ffb2ee 100644
--- a/uncompressed/office365-owa/package.json
+++ b/uncompressed/office365-owa/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "office365-owa", 2 "id": "office365-owa",
3 "name": "Office 365 Outlook Web App", 3 "name": "Office 365 Outlook Web App",
4 "version": "1.1.0", 4 "version": "1.1.1",
5 "description": "Office 365 Outlook Web App", 5 "description": "Office 365 Outlook Web App",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Adam Birds <adam.birds@adbtechltd.co.uk>", 7 "author": "Adam Birds <adam.birds@adbtechltd.co.uk>",
diff --git a/uncompressed/office365-owa/webview.js b/uncompressed/office365-owa/webview.js
index e144c46..ae21e19 100644
--- a/uncompressed/office365-owa/webview.js
+++ b/uncompressed/office365-owa/webview.js
@@ -3,7 +3,7 @@
3module.exports = Franz => { 3module.exports = Franz => {
4 const getMessages = function getMessages() { 4 const getMessages = function getMessages() {
5 let unreadMail = 0; 5 let unreadMail = 0;
6 6
7 if (location.pathname.match(/\/owa/)) { 7 if (location.pathname.match(/\/owa/)) {
8 // classic app 8 // classic app
9 unreadMail = parseInt( 9 unreadMail = parseInt(
@@ -19,7 +19,7 @@ module.exports = Franz => {
19 return; 19 return;
20 } 20 }
21 21
22 unreadMail = [...folders.parentNode.children].reduce((count, child) => { 22 unreadMail = [...folders.parentNode.parentNode.children].reduce((count, child) => {
23 const unread = child.querySelector('.screenReaderOnly'); 23 const unread = child.querySelector('.screenReaderOnly');
24 return unread && unread.textContent === 'unread' 24 return unread && unread.textContent === 'unread'
25 ? count + parseInt(unread.previousSibling.textContent, 10) 25 ? count + parseInt(unread.previousSibling.textContent, 10)