Skip to content

Commit

Permalink
Fix an issue where indirect tray icon was not showing (#1495)
Browse files Browse the repository at this point in the history
  • Loading branch information
FeikoJoosten authored Dec 26, 2023
1 parent 3712a50 commit 115b522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Tray.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export default class TrayIcon {
if (indicator === '•') {
assetFromIndicator = INDICATOR_TRAY_INDIRECT;
}
if (indicator !== 0) {
if (indicator !== 0 && indicator !== '•') {
assetFromIndicator = INDICATOR_TRAY_UNREAD;
}
return assetFromIndicator;
Expand Down

0 comments on commit 115b522

Please sign in to comment.