Skip to content

Commit

Permalink
Resolve lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
testableapple committed Jan 23, 2025
1 parent 338a894 commit f135012
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import androidx.compose.foundation.layout.size
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.platform.testTag
import androidx.compose.ui.unit.dp
import io.getstream.chat.android.compose.ui.components.avatar.Avatar
import io.getstream.chat.android.compose.ui.theme.ChatTheme
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ public class ParticipantRobot {
return this
}

public fun quoteMessageInThread(text: String, alsoSendInChannel: Boolean = false, last: Boolean = true): ParticipantRobot {
public fun quoteMessageInThread(
text: String,
alsoSendInChannel: Boolean = false,
last: Boolean = true
): ParticipantRobot {
val quote = if (last) "quote_last=true" else "quote_first=true"
mockServer.postRequest(
"participant/message?$quote&thread=true&thread_and_channel=$alsoSendInChannel",
Expand Down

0 comments on commit f135012

Please sign in to comment.