1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-17 02:44:04 +02:00

Pebble: webview add safety check

This commit is contained in:
Daniele Gobbetti 2017-01-28 17:45:23 +01:00
parent f66f765fb6
commit d6dd03a065

View File

@ -110,6 +110,8 @@ public class WebViewSingleton extends Activity {
public static void appMessage(final String message) {
if (instance == null)
return;
final String appMessage = jsInterface.parseIncomingAppMessage(message);
LOG.debug("to WEBVIEW: " + appMessage);