fix
This commit is contained in:
parent
ae949af6c3
commit
d92fe0803c
1 changed files with 4 additions and 1 deletions
|
@ -535,7 +535,10 @@ function concatItems(oldItems: MisskeyEntity[]) {
|
|||
}
|
||||
|
||||
async function executeQueue() {
|
||||
if (queue.value.size === 0) return;
|
||||
// キューが空の場合でも古いアイテムをタイムライン表示数を制限する必要がある
|
||||
// ため続行する!
|
||||
// if (queue.value.size === 0) return;
|
||||
|
||||
if (isPausingUpdateByExecutingQueue.value) return;
|
||||
if (timelineBackTopBehavior.value === 'newest') {
|
||||
// Safariは最新のアイテムにするだけ
|
||||
|
|
Loading…
Reference in a new issue