Skip to content

Commit

Permalink
Fix formatting issue that was causing build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
vraravam committed May 25, 2024
1 parent 0ac1286 commit 450b486
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion recipes/hangoutschat/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "hangoutschat",
"name": "Hangouts Chat",
"version": "1.8.2",
"version": "1.8.3",
"license": "MIT",
"aliases": [
"google-chat",
Expand Down
4 changes: 3 additions & 1 deletion recipes/hangoutschat/webview.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ module.exports = Ferdium => {
let indirectCount;

// get unread messages count
directCount = document.querySelectorAll('link[href^="https://ssl.gstatic.com/ui/v1/icons/mail/images/favicon_chat_new_notif_"][href$=".ico"]').length;
directCount = document.querySelectorAll(
'link[href^="https://ssl.gstatic.com/ui/v1/icons/mail/images/favicon_chat_new_notif_"][href$=".ico"]',
).length;

// get unread indirect messages
const indirectCountSelector = document.querySelector(
Expand Down

0 comments on commit 450b486

Please sign in to comment.