Remove unused expression

This commit is contained in:
Bnyro 2023-01-30 16:57:08 +01:00
parent ec25173503
commit c405ca08f0

View File

@ -45,7 +45,7 @@ class CommentsRepliesFragment : Fragment() {
val videoId = arguments?.getString(IntentData.videoId) ?: ""
val comment = JsonHelper.json.decodeFromString(
Comment.serializer(),
arguments?.getString(IntentData.comment) ?: """{}"""
arguments?.getString(IntentData.comment)!!
)
repliesAdapter = CommentsAdapter(null, videoId, mutableListOf(comment), true) {