fix bug of SPI return realTime datsa

This commit is contained in:
zhongchao
2021-02-22 12:46:38 +08:00
parent 5e31ff2456
commit 14acb276ac
2 changed files with 2 additions and 1 deletions

1
.idea/gradle.xml generated
View File

@@ -26,6 +26,7 @@
</set>
</option>
<option name="resolveModulePerSourceSet" value="false" />
<option name="useQualifiedModuleNames" value="true" />
</GradleProjectSettings>
</option>
</component>

View File

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