Skip to content

Commit

Permalink
changing the message in the notification
Browse files Browse the repository at this point in the history
  • Loading branch information
IsmaelMartinez committed Oct 12, 2018
1 parent 6e94f67 commit f78c61c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ app.on('ready', () => {

ipcMain.on('notifications', async (e, msg) => {
if (msg.count>0){
const body = "You got " + msg.count + " notification(s). " + ((msg.text) ? "Last notification is '<i>" + msg.text + "</i>'" : "");
const body = "You got " + msg.count + " notification(s). " + ((msg.text) ? "Notification from '<i>" + msg.text + "</i>'" : "");
const notification = new NativeNotification(
"Microsoft Teams",
{
Expand Down

0 comments on commit f78c61c

Please sign in to comment.