Commit 5604a81d by onuma

!= true で判定していた箇所を == falseで判定するように修正

parent 0cf492de
...@@ -66,7 +66,7 @@ NativeBridgeDelegate.createChatRoom = function ( ...@@ -66,7 +66,7 @@ NativeBridgeDelegate.createChatRoom = function (
}; };
NativeBridgeDelegate.updateContactInfo = function () { NativeBridgeDelegate.updateContactInfo = function () {
if (serverInfo.isOnline != true) { if (serverInfo.isOnline == false) {
return; return;
} }
NativeBridgeDelegate.updateGroupInfo("0"); NativeBridgeDelegate.updateGroupInfo("0");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment