Skip to content

Commit

Permalink
fix: fixed nullability in TypedValue.Generic
Browse files Browse the repository at this point in the history
  • Loading branch information
y9san9 committed May 1, 2024
1 parent 06c9338 commit ef2c5ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ androidx-lifecycle = "2.7.0"
ktgbotapi = "11.0.0"
mdi = "0.0.37"

ksm = "0.0.27"
ksm = "0.0.28"

[libraries]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public inline fun <reified T> StateContext.receiveParameter(key: String): T? {
return plugin(StateParametersPlugin).receive(
context = this,
key = key
)?.get()
)?.get<T>()
}

public fun StateContext.receiveParameter(
Expand Down

0 comments on commit ef2c5ce

Please sign in to comment.