[2.13.0-arch-opt] update ai cloud sdk version

This commit is contained in:
zhongchao
2023-02-21 11:55:52 +08:00
parent 497573e1d0
commit eb56953282
2 changed files with 12 additions and 12 deletions

View File

@@ -326,12 +326,12 @@ class HttpDnsStartUp : AndroidStartup<Boolean>() {
AbsMogoApplication.getApp()
)
.getString(SharedPrefsConstants.LOCATION_LONGITUDE)
try {
return HttpDnsSimpleLocation(
return try {
HttpDnsSimpleLocation(
ciyCode, latitude.toDouble(), longitude.toDouble()
)
} catch (e: NumberFormatException) {
return HttpDnsSimpleLocation("010", 1.0, 1.0)
HttpDnsSimpleLocation("010", 1.0, 1.0)
}
}
}