Skip to content

Commit

Permalink
Fix end
Browse files Browse the repository at this point in the history
  • Loading branch information
rlepinski committed Oct 1, 2024
1 parent 7699182 commit 5e2f0ac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion AirshipFrameworkProxy.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

Pod::Spec.new do |s|
s.version = "9.1.1"
s.version = "9.1.2"
s.name = "AirshipFrameworkProxy"
s.summary = "Airship iOS mobile framework proxy"
s.documentation_url = "https://docs.airship.com/platform/mobile"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ public sealed class LiveUpdateRequest {

public data class End(
val name: String,
val content: JsonMap,
val content: JsonMap?,
val timestamp: Long? = null,
val dismissalTimestamp: Long? = null
): LiveUpdateRequest() {
public companion object {
@Throws(JsonException::class)
public fun fromJson(jsonValue: JsonValue): Update {
public fun fromJson(jsonValue: JsonValue): End {
val map = jsonValue.requireMap()
return Update(
return End(
name = map.requireField(NAME),
content = map.requireField(CONTENT),
timestamp = map.optionalField<String>(TIMESTAMP)?.let {
Expand Down
2 changes: 1 addition & 1 deletion android/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]

# Airship
airshipProxy = '9.1.1'
airshipProxy = '9.1.2'
airship = '18.3.1'

# Gradle plugins
Expand Down

0 comments on commit 5e2f0ac

Please sign in to comment.