Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
G
go-cqhttp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
go-cqhttp
Commits
49e39951
Commit
49e39951
authored
Sep 05, 2020
by
Mrs4s
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move reply pos. close #220
parent
7d3265b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
coolq/cqcode.go
coolq/cqcode.go
+11
-5
No files found.
coolq/cqcode.go
View file @
49e39951
...
...
@@ -32,6 +32,17 @@ func ToArrayMessage(e []message.IMessageElement, code int64, raw ...bool) (r []M
if
len
(
raw
)
!=
0
{
ur
=
raw
[
0
]
}
m
:=
&
message
.
SendingMessage
{
Elements
:
e
}
reply
:=
m
.
FirstOrNil
(
func
(
e
message
.
IMessageElement
)
bool
{
_
,
ok
:=
e
.
(
*
message
.
ReplyElement
)
return
ok
})
if
reply
!=
nil
{
r
=
append
(
r
,
MSG
{
"type"
:
"reply"
,
"data"
:
map
[
string
]
string
{
"id"
:
fmt
.
Sprint
(
ToGlobalId
(
code
,
o
.
ReplySeq
))},
})
}
for
_
,
elem
:=
range
e
{
m
:=
MSG
{}
switch
o
:=
elem
.
(
type
)
{
...
...
@@ -52,11 +63,6 @@ func ToArrayMessage(e []message.IMessageElement, code int64, raw ...bool) (r []M
"data"
:
map
[
string
]
string
{
"qq"
:
fmt
.
Sprint
(
o
.
Target
)},
}
}
case
*
message
.
ReplyElement
:
m
=
MSG
{
"type"
:
"reply"
,
"data"
:
map
[
string
]
string
{
"id"
:
fmt
.
Sprint
(
ToGlobalId
(
code
,
o
.
ReplySeq
))},
}
case
*
message
.
ForwardElement
:
m
=
MSG
{
"type"
:
"forward"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment