1
0
mirror of https://github.com/mamoe/mirai.git synced 2025-03-25 06:50:09 +08:00
This commit is contained in:
Him188 2019-12-14 22:07:27 +08:00
parent 7196ee6a12
commit c96dd1c463

View File

@ -37,7 +37,7 @@ internal sealed class ContactImpl : Contact {
@PublishedApi
internal fun CoroutineScope.Group(bot: Bot, groupId: GroupId, info: RawGroupInfo, context: CoroutineContext): Group =
GroupImpl(bot, groupId, context).apply {
this@apply.info = info.parseBy(this@apply);
this@apply.info = info.parseBy(this@apply)
launch { startUpdater() }
}