Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
K
koishi-plugin-pics
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
3rdeye
koishi-plugin-pics
Commits
46f3bb5c
Commit
46f3bb5c
authored
Nov 01, 2022
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix file download
parent
9d56016d
Pipeline
#17702
failed with stages
in 44 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
package.json
package.json
+1
-1
src/index.ts
src/index.ts
+2
-4
No files found.
package.json
View file @
46f3bb5c
{
{
"name"
:
"koishi-plugin-pics"
,
"name"
:
"koishi-plugin-pics"
,
"description"
:
"Koishi 的随机图片插件"
,
"description"
:
"Koishi 的随机图片插件"
,
"version"
:
"10.3.
0
"
,
"version"
:
"10.3.
1
"
,
"main"
:
"dist/index.js"
,
"main"
:
"dist/index.js"
,
"types"
:
"dist/src/index.d.ts"
,
"types"
:
"dist/src/index.d.ts"
,
"scripts"
:
{
"scripts"
:
{
...
...
src/index.ts
View file @
46f3bb5c
...
@@ -186,10 +186,8 @@ export default class PicsContainer
...
@@ -186,10 +186,8 @@ export default class PicsContainer
if
(
url
.
startsWith
(
'
base64://
'
))
{
if
(
url
.
startsWith
(
'
base64://
'
))
{
return
Buffer
.
from
(
url
.
slice
(
9
),
'
base64
'
);
return
Buffer
.
from
(
url
.
slice
(
9
),
'
base64
'
);
}
}
return
this
.
_http
.
get
<
Buffer
>
(
url
,
{
const
{
data
}
this
.
_http
.
file
(
url
);
responseType
:
'
arraybuffer
'
,
return
data
;
...
extraConfig
,
});
}
}
bufferToUrl
(
buffer
:
Buffer
)
{
bufferToUrl
(
buffer
:
Buffer
)
{
...
...
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