mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-28 05:27:30 +08:00
🐛 fix message segment mapping error
This commit is contained in:
parent
e18b3d04fb
commit
3564228183
@ -275,10 +275,10 @@ class MessageSegment(Mapping, abc.ABC, Generic[TM]):
|
|||||||
return self.get_message_class()(other) + self # type: ignore
|
return self.get_message_class()(other) + self # type: ignore
|
||||||
|
|
||||||
def __getitem__(self, key: str):
|
def __getitem__(self, key: str):
|
||||||
return self.data[key]
|
return getattr(self, key)
|
||||||
|
|
||||||
def __setitem__(self, key: str, value: Any):
|
def __setitem__(self, key: str, value: Any):
|
||||||
self.data[key] = value
|
return setattr(self, key, value)
|
||||||
|
|
||||||
def __iter__(self):
|
def __iter__(self):
|
||||||
yield from self.data.__iter__()
|
yield from self.data.__iter__()
|
||||||
|
Loading…
Reference in New Issue
Block a user