This commit is contained in:
syuilo 2020-08-02 13:49:28 +09:00
parent 70ee172128
commit 5ae8a3c7e8

View file

@ -55,16 +55,16 @@ export default Vue.extend({
},
computed: {
isMe(): boolean {
return this.message.userId == this.$store.state.i.id;
return this.message.userId === this.$store.state.i.id;
},
urls(): string[] {
if (this.message.text) {
const ast = parse(this.message.text);
return unique(ast
.filter(t => ((t.node.type == 'url' || t.node.type == 'link') && t.node.props.url && !t.node.props.silent))
.filter(t => ((t.node.type === 'url' || t.node.type === 'link') && t.node.props.url && !t.node.props.silent))
.map(t => t.node.props.url));
} else {
return null;
return [];
}
}
},