We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b54ff93 commit d1306c3Copy full SHA for d1306c3
1 file changed
lagrange/client/server_push/msg.py
@@ -105,8 +105,10 @@ async def msg_push_handler(client: "Client", sso: SSOPacket):
105
grp_id,
106
attrs["uin_str1"],
107
attrs["uin_str2"],
108
- attrs.get("action_str", ""), # ?
109
- attrs.get("suffix_str", ""),
+ attrs["action_str"]
+ if "action_str" in attrs
110
+ else attrs["alt_str1"], # ?
111
+ attrs["suffix_str"],
112
attrs,
113
pb.body.attrs_xml,
114
)
0 commit comments