Merge pull request #1305 from davotoula/1292-url-decode-text-shared-to-app

use existing helper function that URL decodes message text
This commit is contained in:
Vitor Pamplona
2025-03-25 18:06:42 -04:00
committed by GitHub
@@ -337,7 +337,7 @@ fun AppNavigation(
popEnterTransition = { scaleIn },
popExitTransition = { slideOutVerticallyToBottom },
) {
val draftMessage = it.arguments?.getString("message")?.ifBlank { null }
val draftMessage = it.message()?.ifBlank { null }
val attachment =
it.arguments?.getString("attachment")?.ifBlank { null }?.let {
Uri.parse(it)
@@ -347,8 +347,8 @@ fun AppNavigation(
val fork = it.arguments?.getString("fork")
val version = it.arguments?.getString("version")
val draft = it.arguments?.getString("draft")
val enableMessageInterface = it.arguments?.getBoolean("enableMessageInterface") ?: false
val enableGeolocation = it.arguments?.getBoolean("enableGeolocation") ?: false
val enableMessageInterface = it.arguments?.getBoolean("enableMessageInterface") == true
val enableGeolocation = it.arguments?.getBoolean("enableGeolocation") == true
NewPostScreen(
message = draftMessage,