Skip to content

Commit

Permalink
fix: start notif counter from 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Aylur committed Sep 9, 2024
1 parent 8971835 commit aaef50b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/notifications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ export class Notifications extends Service {
private _dbus!: Gio.DBusExportedObject;
private _notifications: Map<number, Notification>;
private _dnd = false;
private _idCount = 0;
private _idCount = 1;

constructor() {
super();
Expand Down

0 comments on commit aaef50b

Please sign in to comment.