Cache failed url-preview (apply to proxy/client) (#2154)

This commit is contained in:
MeiMei
2018-08-11 18:04:59 +09:00
committed by syuilo
parent 3c90abfb96
commit a8f142096c
2 changed files with 11 additions and 7 deletions

View File

@ -104,13 +104,15 @@ export default Vue.extend({
}
fetch('/url?url=' + encodeURIComponent(this.url)).then(res => {
res.json().then(info => {
this.title = info.title;
this.description = info.description;
this.thumbnail = info.thumbnail;
this.icon = info.icon;
this.sitename = info.sitename;
if (info.url != null) {
this.title = info.title;
this.description = info.description;
this.thumbnail = info.thumbnail;
this.icon = info.icon;
this.sitename = info.sitename;
this.fetching = false;
this.fetching = false;
}
});
});
}