From c2733a4186f622aa68fdf94240f2e9fb195e6d33 Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Wed, 11 Oct 2017 09:47:16 -0700 Subject: [PATCH] Fix notification bug --- scripts/system/notifications.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/system/notifications.js b/scripts/system/notifications.js index dc0fb1daf9..ef2c674a41 100644 --- a/scripts/system/notifications.js +++ b/scripts/system/notifications.js @@ -576,6 +576,10 @@ createNotification("Processing GIF snapshot...", NotificationType.SNAPSHOT); } + function processingGif() { + createNotification("Your wallet isn't set up. Open the WALLET app.", NotificationType.WALLET); + } + function connectionAdded(connectionName) { createNotification(connectionName, NotificationType.CONNECTION); }