Merge pull request #425 from deton/fix-nullresult-fromthread

CB-12218: (android) Fix consistency of null result message
This commit is contained in:
Joe Bowser
2018-01-03 11:24:24 -08:00
committed by GitHub
2 changed files with 16 additions and 0 deletions

View File

@@ -511,6 +511,9 @@ public class NativeToJsMessageQueue {
.append(pluginResult.getMessage())
.append("')");
break;
case PluginResult.MESSAGE_TYPE_NULL:
sb.append("null");
break;
default:
sb.append(pluginResult.getMessage());
}