Fix can't preview some url
This commit is contained in:
parent
6b0a42af27
commit
d261fdbbc0
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue