Reset infiniteFinish flag on error in MoreModal fetchData

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-09 14:20:12 +08:00
parent adbb90eeea
commit 210364a255

View File

@@ -386,6 +386,7 @@ async function fetchData() {
infiniteFinish.value = true; infiniteFinish.value = true;
} catch (error) { } catch (error) {
console.error("Failed to load data:", error); console.error("Failed to load data:", error);
infiniteFinish.value = true;
} }
} }
/** /**