Fix can't preview some url

This commit is contained in:
mei23 2018-05-09 20:14:34 +09:00
parent 6b0a42af27
commit d261fdbbc0
2 changed files with 2 additions and 2 deletions

View file

@ -45,7 +45,7 @@ export default Vue.extend({
} else if (url.hostname == 'youtu.be') {
this.youtubeId = url.pathname;
} else {
fetch('/url?url=' + this.url).then(res => {
fetch('/url?url=' + encodeURIComponent(this.url)).then(res => {
res.json().then(info => {
this.title = info.title;
this.description = info.description;

View file

@ -16,6 +16,6 @@ function wrap(url: string): string {
return url != null
? url.startsWith('https://')
? url
: `https://images.weserv.nl/?url=${url.replace(/^http:\/\//, '')}`
: `https://images.weserv.nl/?url=${encodeURIComponent(url.replace(/^http:\/\//, ''))}`
: null;
}