-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
fix: QQOfficialPlatformAdapter 消息解析新增 appid 参数以确保能获取用户头像地址;移除多余的 At 组件,仅给群聊类型添加 At 组件 (#6741) #7289
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 2 commits
f000a21
64bc582
eca534f
d84565f
610370f
5ea790d
2b70c29
7b22e56
90d565f
b9b3d50
0ee84ae
d13ff84
f97aca8
7c0e841
3e232fb
fc0e185
1530ce1
daaeb94
487c198
9018423
0121df1
282ef94
b79e252
86e6d08
0eb0437
5109ca9
c7c878a
934a74f
65d01b7
a9d6575
15e3c12
158a26c
0dd91f1
0c02149
7fc1a13
c464d7a
9dc3459
8919d4d
48e54e5
2e66059
4a0ab86
62d7df1
2a1544f
de35ff5
95cb2a8
efa999c
086dc00
e855790
e1c4b52
480c77a
50b7d18
2aafe18
376161f
f084fba
7e3bdbc
49d1746
9b15a60
abb6a32
4ca8bc7
54f6916
70107b2
f543f16
a550b88
ff2d3d1
4a8686e
94378d6
d921322
3f40a1b
7ff4057
a73e388
87bfecb
fc515d4
7ff6df9
97077ed
da12fca
3eccbca
6584168
806c3df
b152516
9ba2ea6
a306c63
585ffb3
7b16068
5357a29
69b1b09
12168a9
f695ddc
5e6a9f9
cbeb25f
9c9d4d6
360a13b
105530a
b17e5d4
596b6dd
722512f
741b25a
1ff042e
310fdf3
0883437
868c81b
ca4923d
3af00b9
005b836
74849b4
22606f3
ea5d573
c867dac
422d3c1
d3a429a
582a63b
5f701a7
59c0e74
d9e91bb
2126002
7b11f90
252c623
6918ebe
8310ade
26ff632
90b79d5
a0159c8
a3abb28
fe0e235
b749f62
c4dee90
4308580
a47e39d
5c27cf1
3d2ff93
a64d4e7
8f62ad5
f429c72
6bff35d
5012475
3b8a77b
b4f3718
607735e
6675a95
0b07409
4588543
b40401a
c8b83f0
779517d
6f8e170
c27118d
c2b8378
92ecb6e
b09defc
be22a99
b802ede
13d0b8c
7d22cfb
43156d6
b3c3f52
86a78b5
89209ae
ba7ace4
dd36913
25f1081
07b49b9
3f1a148
3cd48ad
33f54aa
ec1af1a
7a23c26
e781c5e
aa279f0
18e6659
5303e40
dcf84e6
9daf44a
1cd49b4
cb9d7c0
6a81739
ec363aa
8946a90
7543dd2
3fc29a6
4d1e0ef
e16e5c7
6d49428
33ec7bb
c4048bb
60738b4
5e32fdf
2ecd95b
1b76af4
4463895
5f827ff
63e1988
0208dbb
f5d60f3
497fefb
1acefcd
c059d60
9bc8731
2c3bceb
946685d
7c4a061
d57582e
716e651
e610c49
4925397
50b1485
1d36f04
0c47c27
846a1ab
71ce6b0
e9a62f7
cafe26b
3fb7515
afb0f88
585b871
4480bc2
d3793ee
d6c4c70
1bc8175
b403422
10fa16e
d8eb3d3
a0c9cc8
dcaaf62
c7cfb81
e875709
adc31fd
9f999e4
361f42f
1f3f86a
40fb75f
5e0fece
85a50ef
de590c4
a131d7f
eac4215
7a0909a
daee102
169a856
d582a85
8b609a9
e980151
3d7dff6
6996dbd
a5141e2
284700d
e9c3481
d373a24
273b677
6cdcf07
866109f
4356806
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +0,0 @@ | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -27,7 +27,7 @@ def test_local_file_system_component_prefers_utf8_before_windows_locale( | |||||
|
|
||||||
| skill_path = tmp_path / "skills" / "demo.txt" | ||||||
| skill_path.parent.mkdir(parents=True, exist_ok=True) | ||||||
| skill_path.write_bytes("技能内容".encode("utf-8")) | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. issue (testing): Using Given the test name ( To keep the test deterministic and accurately exercise |
||||||
| skill_path.write_bytes("技能内容".encode()) | ||||||
|
||||||
| skill_path.write_bytes("技能内容".encode()) | |
| skill_path.write_bytes("技能内容".encode("utf-8")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
collections.abc.AsyncGeneratorexpects two type parameters (yield type, send type). UsingAsyncGenerator[None]is not a valid generic specialization for type checkers and is inconsistent with other Stage implementations in this repo (which useAsyncGenerator[None, None]). Consider changing this back toNone | AsyncGenerator[None, None](or switching toAsyncIterator[None]if you don’t need.asend()typing) and keep the docstring’s return type in sync.