Skip to content

Commit

Permalink
all: safer non-string json (fixes #3260) (#3265)
Browse files Browse the repository at this point in the history
Co-authored-by: dogi <dogi@users.noreply.github.com>
  • Loading branch information
Okuro3499 and dogi authored Mar 18, 2024
1 parent 144bf68 commit 76cd05e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId "org.ole.planet.myplanet"
minSdkVersion 21
targetSdkVersion 34
versionCode 1423
versionName "0.14.23"
versionCode 1424
versionName "0.14.24"
ndkVersion '21.3.6528147'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
Expand Down
10 changes: 8 additions & 2 deletions app/src/main/java/org/ole/planet/myplanet/utilities/JsonUtils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ object JsonUtils {
return try {
if (jsonObject?.has(fieldName) == true) {
val el: JsonElement = jsonObject.get(fieldName)
if (el is JsonNull) "" else el.asString
if (el is JsonNull) {
""
} else if (el.isJsonPrimitive && el.asJsonPrimitive.isString) {
el.asString
} else {
""
}
} else {
""
}
Expand Down Expand Up @@ -166,4 +172,4 @@ object JsonUtils {
0L
}
}
}
}

0 comments on commit 76cd05e

Please sign in to comment.