1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-14 00:35:52 +02:00

activeでもexecuteQueueする

This commit is contained in:
tamaina
2023-07-21 11:04:58 +00:00
parent 20ae59756f
commit ef69eee155

View File

@@ -433,7 +433,7 @@ onDeactivated(() => {
active.value = false;
});
watch(visibility, () => {
watch([active, visibility], () => {
if (!backed && active.value && visibility.value === 'visible') {
executeQueue();
}