Skip to content

Commit

Permalink
Notification silent
Browse files Browse the repository at this point in the history
  • Loading branch information
nlarche committed Dec 4, 2016
1 parent dcb4a43 commit 2cbca70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/front/notification.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default class QobuzNotification {
if (this.notification) {
this.notification.close();
}
this.notification = new window.Notification(parent[2], { body: parent[3] + "\n" + parent[4], icon: parent[1] });
this.notification = new window.Notification(parent[2], { body: parent[3] + "\n" + parent[4], icon: parent[1], silent: true });
setTimeout(this.notification.close.bind(this.notification), 1000);
}
}
Expand Down

0 comments on commit 2cbca70

Please sign in to comment.