fix bug of realTime return data

This commit is contained in:
zhongchao
2021-02-22 12:47:10 +08:00
parent 74ca0dfe19
commit 03e8c6cf3f

View File

@@ -40,7 +40,7 @@ public class RealTimeProviderImp implements IRealTimeProvider {
@Override
public List<CloudLocationInfo> getLocationMsg() {
if (mDelegate != null) {
mDelegate.getLocationMsg();
return mDelegate.getLocationMsg();
}
return null;
}