Commit 631ca4f6 authored by Him188's avatar Him188

Fix duplicated function name

parent d365ec5b
...@@ -52,13 +52,13 @@ class GroupMessage( ...@@ -52,13 +52,13 @@ class GroupMessage(
suspend inline fun quoteReply(plain: String) = reply(this.message.quote() + plain) suspend inline fun quoteReply(plain: String) = reply(this.message.quote() + plain)
@JvmName("reply1") @JvmName("reply2")
suspend inline fun String.quoteReply() = quoteReply(this) suspend inline fun String.quoteReply() = quoteReply(this)
@JvmName("reply1") @JvmName("reply2")
suspend inline fun Message.quoteReply() = quoteReply(this) suspend inline fun Message.quoteReply() = quoteReply(this)
@JvmName("reply1") @JvmName("reply2")
suspend inline fun MessageChain.quoteReply() = quoteReply(this) suspend inline fun MessageChain.quoteReply() = quoteReply(this)
override fun toString(): String = override fun toString(): String =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment