1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-01 20:56:06 +02:00

Fix: url-preview (#3397)

This commit is contained in:
MeiMei
2018-11-25 01:39:22 +09:00
committed by syuilo
parent 60e10d4efa
commit 93f13ffc8e
4 changed files with 8 additions and 8 deletions

View File

@@ -151,8 +151,8 @@ export default Vue.extend({
if (this.appearNote.text) {
const ast = parse(this.appearNote.text);
return unique(ast
.filter(t => (t.type == 'url' || t.type == 'link') && !t.silent)
.map(t => t.url));
.filter(t => ((t.name == 'url' || t.name == 'link') && t.props.url && !t.silent))
.map(t => t.props.url));
} else {
return null;
}