fix(notification): wrong condition for sounds playing (#91)

Co-authored-by: Jef LeCompte <jeffreylec@gmail.com>
This commit is contained in:
Mark Dietzer
2020-09-20 05:47:37 -07:00
committed by GitHub
parent df5ba68e94
commit 103d96dc81
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ export function sendNotification(cartUrl: string) {
sendPushoverNotification(cartUrl);
}
if (notifications.playSound === 'true') {
if (notifications.playSound) {
playSound();
}
}