Fix cause error in case preview has data URI

This commit is contained in:
mei23 2018-05-10 01:08:33 +09:00
parent d261fdbbc0
commit f40e1ff0cc
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ module.exports = async (ctx: Koa.Context) => {
function wrap(url: string): string { function wrap(url: string): string {
return url != null return url != null
? url.startsWith('https://') ? url.startsWith('https://') || url.startsWith('data:')
? url ? url
: `https://images.weserv.nl/?url=${encodeURIComponent(url.replace(/^http:\/\//, ''))}` : `https://images.weserv.nl/?url=${encodeURIComponent(url.replace(/^http:\/\//, ''))}`
: null; : null;