Skip to content

Commit

Permalink
Fix missing callback invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandarIlic committed Feb 21, 2025
1 parent 66f9313 commit 93e397a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ fun NoteContent(
onProfileClick = noteCallbacks.onProfileClick,
onUrlClick = {
if (it.isPrimalLegendsUrl()) {
noteCallbacks.onPrimalLegendsLeaderboardClick
noteCallbacks.onPrimalLegendsLeaderboardClick?.invoke()
} else {
onUrlClick?.invoke(it)
}
Expand Down

0 comments on commit 93e397a

Please sign in to comment.