mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-26 09:36:02 -07:00
[Client] Fix bug
This commit is contained in:
parent
046aa1f93f
commit
220ea46249
1 changed files with 2 additions and 2 deletions
|
@ -338,7 +338,7 @@
|
||||||
|
|
||||||
this.fetching = true;
|
this.fetching = true;
|
||||||
this.loadingContext = false;
|
this.loadingContext = false;
|
||||||
this.content = null;
|
this.context = null;
|
||||||
this.post = null;
|
this.post = null;
|
||||||
|
|
||||||
this.on('mount', () => {
|
this.on('mount', () => {
|
||||||
|
@ -446,7 +446,7 @@
|
||||||
}).then(context => {
|
}).then(context => {
|
||||||
this.update({
|
this.update({
|
||||||
loadContext: false,
|
loadContext: false,
|
||||||
content: context.reverse()
|
context: context.reverse()
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue