This commit is contained in:
jxxghp
2023-07-14 15:40:19 +08:00
parent 0b1f17eb02
commit a81c9262c3
3 changed files with 9 additions and 6 deletions

View File

@ -65,7 +65,8 @@ class MessageChain(ChainBase):
EventType.CommandExcute,
{
"cmd": text,
"user": userid
"user": userid,
"channel": channel
}
)
@ -230,7 +231,7 @@ class MessageChain(ChainBase):
else:
# 发送媒体数据
self.__post_medias_message(channel=channel,
title=self._current_media.title,
title=self._current_meta.name,
items=cache_list[start:end],
userid=userid,
total=len(cache_list))
@ -263,7 +264,7 @@ class MessageChain(ChainBase):
else:
# 发送媒体数据
self.__post_medias_message(channel=channel,
title=self._current_media.title,
title=self._current_meta.name,
items=cache_list, userid=userid, total=total)
else: