URL protocol returns the protocol string with the ':' attached

(how did this work before?!)
This commit is contained in:
Roxanne Skelly 2018-10-23 14:46:13 -07:00
parent be7a947ddd
commit 10ee5ac5b4

View file

@ -157,7 +157,7 @@ function HifiNotifications(config, menuNotificationCallback) {
var _menuNotificationCallback = menuNotificationCallback;
notifier.on('click', function (notifierObject, options) {
const optUrl = url.parse(options.url);
if ((optUrl.protocol === "hifi") || (optUrl.protocol === "hifiapp")) {
if ((optUrl.protocol === "hifi:") || (optUrl.protocol === "hifiapp:")) {
StartInterface(options.url);
_menuNotificationCallback(options.notificationType, false);
} else {