Fix BotJoinGroupEvent.Retrieve.toString() (#606)

This commit is contained in:
Karlatemp 2020-09-20 01:33:34 +08:00 committed by GitHub
parent 5d5fa301cc
commit ae6d6a8f9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -142,7 +142,7 @@ public sealed class BotJoinGroupEvent : GroupEvent, BotPassiveEvent, Packet, Abs
public data class Retrieve internal constructor(
public override val group: Group
) : BotJoinGroupEvent() {
override fun toString(): String = "MemberJoinEvent.Retrieve(group=${group.id})"
override fun toString(): String = "BotJoinGroupEvent.Retrieve(group=${group.id})"
}
}