Skip to content

Commit

Permalink
fix check osx
Browse files Browse the repository at this point in the history
  • Loading branch information
kewde committed Feb 10, 2018
1 parent 77e95bd commit 2d1e334
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/notification/notification.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ exports.init = function () {
};

// on osx, discard icon (custom node-notifier)
if (process.platform !== 'darwin') {
if (process.platform === 'darwin') {
delete data['icon'];
}

Expand Down

0 comments on commit 2d1e334

Please sign in to comment.