Skip to content

Commit

Permalink
Fixed linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jguz-pubnub committed Aug 27, 2024
1 parent afc3a8b commit cebc93c
Showing 1 changed file with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ data class ThreadMessageImpl(
override val referencedChannels: MessageReferencedChannels? = null,
override val quotedMessage: QuotedMessage? = null,
) : BaseMessage<ThreadMessage>(
chat = chat,
timetoken = timetoken,
content = content,
channelId = channelId,
userId = userId,
actions = actions,
meta = meta,
mentionedUsers = mentionedUsers,
referencedChannels = referencedChannels,
quotedMessage = quotedMessage
),
chat = chat,
timetoken = timetoken,
content = content,
channelId = channelId,
userId = userId,
actions = actions,
meta = meta,
mentionedUsers = mentionedUsers,
referencedChannels = referencedChannels,
quotedMessage = quotedMessage
),
ThreadMessage {
override fun copyWithActions(actions: Actions): ThreadMessage = copy(actions = actions)

Expand Down

0 comments on commit cebc93c

Please sign in to comment.