mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-27 01:46:25 -07:00
Fix bug
This commit is contained in:
parent
adedffa4a8
commit
51f0e12062
1 changed files with 3 additions and 1 deletions
|
@ -47,7 +47,9 @@ export default Vue.extend({
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
if (this.connection) this.connection.close();
|
if (this.connection) this.connection.close();
|
||||||
this.connection = (this as any).os.stream.connectToChannel('hashtag', this.tagTl.query);
|
this.connection = (this as any).os.stream.connectToChannel('hashtag', {
|
||||||
|
q: this.tagTl.query
|
||||||
|
});
|
||||||
this.connection.on('note', this.onNote);
|
this.connection.on('note', this.onNote);
|
||||||
|
|
||||||
this.fetch();
|
this.fetch();
|
||||||
|
|
Loading…
Reference in a new issue