Skip to content

Commit

Permalink
Fix formatting of post ids
Browse files Browse the repository at this point in the history
  • Loading branch information
HeroBrine1st committed Jan 11, 2024
1 parent 0b97a39 commit 9b4bf1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ fun PostActionRow(
action = Intent.ACTION_SEND
putExtra(
Intent.EXTRA_TEXT,
"${BuildConfig.DEEP_LINK_BASE_URL}/posts/${post.id}"
"${BuildConfig.DEEP_LINK_BASE_URL}/posts/${post.id.value}"
)
type = "text/plain"
}, null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ fun Post(
Text(
stringResource(
R.string.assertion_failed,
"API_RETURNED_VIDEO_SAMPLE_${post.id}"
"API_RETURNED_VIDEO_SAMPLE_${post.id.value}"
)
)
} else
Expand Down

0 comments on commit 9b4bf1d

Please sign in to comment.