Feat: Disable Auto-Complete on Moku

This commit is contained in:
Youwes09
2026-05-16 07:56:05 -05:00
parent 1e2e923eab
commit 18ac38e888
3 changed files with 7 additions and 0 deletions
+1
View File
@@ -292,6 +292,7 @@ class Store {
gqlFn: (query: string, vars: Record<string, unknown>) => Promise<unknown>,
UPDATE_MANGA_CATEGORIES: string, UPDATE_MANGA?: string, mangaStatus?: string,
): Promise<void> {
if (this.settings.disableAutoComplete) return;
if (!chaps.length || mangaStatus === "ONGOING") return;
const completed = categories.find(c => c.name === "Completed");
if (!completed) return;