[Client:Desktop] Fix bug
This commit is contained in:
parent
17677e00f2
commit
b0c12d09e3
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "misskey",
|
"name": "misskey",
|
||||||
"author": "syuilo <i@syuilo.com>",
|
"author": "syuilo <i@syuilo.com>",
|
||||||
"version": "0.0.1479",
|
"version": "0.0.1480",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"description": "A miniblog-based SNS",
|
"description": "A miniblog-based SNS",
|
||||||
"bugs": "https://github.com/syuilo/misskey/issues",
|
"bugs": "https://github.com/syuilo/misskey/issues",
|
||||||
|
|
|
@ -87,7 +87,7 @@
|
||||||
offset: this.offset
|
offset: this.offset
|
||||||
}).then(posts => {
|
}).then(posts => {
|
||||||
const poll = posts ? posts[0] : null;
|
const poll = posts ? posts[0] : null;
|
||||||
if (post == null) {
|
if (poll == null) {
|
||||||
this.offset = 0;
|
this.offset = 0;
|
||||||
} else {
|
} else {
|
||||||
this.offset++;
|
this.offset++;
|
||||||
|
|
Loading…
Reference in a new issue