forked from FoundKeyGang/FoundKey
Fix cause error in case preview has data URI
This commit is contained in:
parent
d261fdbbc0
commit
f40e1ff0cc
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ module.exports = async (ctx: Koa.Context) => {
|
|||
|
||||
function wrap(url: string): string {
|
||||
return url != null
|
||||
? url.startsWith('https://')
|
||||
? url.startsWith('https://') || url.startsWith('data:')
|
||||
? url
|
||||
: `https://images.weserv.nl/?url=${encodeURIComponent(url.replace(/^http:\/\//, ''))}`
|
||||
: null;
|
||||
|
|
Loading…
Reference in a new issue