chore: add default case to bridge switch

This commit is contained in:
Lea Anthony
2019-06-29 23:03:46 +10:00
parent 0b43fae32a
commit 44386490c8

View File

@@ -191,6 +191,8 @@ function startBridge() {
var callbackData = message.data.slice(1);
window.wails._.callback(callbackData);
break;
default:
window.wails.Log.Error("Unknown message type received: " + message.data[0])
}
}