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
61f103ac
Commit
61f103ac
authored
Aug 07, 2020
by
Mrs4s
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fix.
parent
05643146
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
coolq/cqcode.go
coolq/cqcode.go
+8
-2
No files found.
coolq/cqcode.go
View file @
61f103ac
...
@@ -212,9 +212,9 @@ func (bot *CQBot) ToElement(t string, d map[string]string, group bool) (message.
...
@@ -212,9 +212,9 @@ func (bot *CQBot) ToElement(t string, d map[string]string, group bool) (message.
kv
:=
strings
.
SplitN
(
line
,
"="
,
2
)
kv
:=
strings
.
SplitN
(
line
,
"="
,
2
)
switch
kv
[
0
]
{
switch
kv
[
0
]
{
case
"md5"
:
case
"md5"
:
hash
,
_
=
hex
.
DecodeString
(
kv
[
1
]
)
hash
,
_
=
hex
.
DecodeString
(
strings
.
ReplaceAll
(
kv
[
1
],
"
\r
"
,
""
)
)
case
"size"
:
case
"size"
:
t
,
_
:=
strconv
.
Atoi
(
kv
[
1
]
)
t
,
_
:=
strconv
.
Atoi
(
strings
.
ReplaceAll
(
kv
[
1
],
"
\r
"
,
""
)
)
size
=
int32
(
t
)
size
=
int32
(
t
)
}
}
}
}
...
@@ -223,6 +223,12 @@ func (bot *CQBot) ToElement(t string, d map[string]string, group bool) (message.
...
@@ -223,6 +223,12 @@ func (bot *CQBot) ToElement(t string, d map[string]string, group bool) (message.
hash
=
r
.
ReadBytes
(
16
)
hash
=
r
.
ReadBytes
(
16
)
size
=
r
.
ReadInt32
()
size
=
r
.
ReadInt32
()
}
}
if
size
==
0
{
return
nil
,
errors
.
New
(
"img size is 0"
)
}
if
len
(
hash
)
!=
16
{
return
nil
,
errors
.
New
(
"invalid hash"
)
}
if
group
{
if
group
{
rsp
,
err
:=
bot
.
Client
.
QueryGroupImage
(
1
,
hash
,
size
)
rsp
,
err
:=
bot
.
Client
.
QueryGroupImage
(
1
,
hash
,
size
)
if
err
!=
nil
{
if
err
!=
nil
{
...
...
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