fix typos

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-12-05 11:35:47 +08:00
parent b4a46133be
commit ea52dd4484
51 changed files with 162 additions and 162 deletions

View File

@@ -52,7 +52,7 @@ class DownloadPageController extends GetxController
..cover = entry.cover
..sortKey = aSortKey;
}
page.entrys.add(entry);
page.entries.add(entry);
} else {
list.add(
DownloadPageInfo(
@@ -62,7 +62,7 @@ class DownloadPageController extends GetxController
cover: entry.cover,
sortKey: entry.sortKey,
seasonType: entry.ep?.seasonType,
entrys: [entry],
entries: [entry],
),
);
}
@@ -82,7 +82,7 @@ class DownloadPageController extends GetxController
final watchProgress = GStorage.watchProgress;
for (var page in allChecked) {
await watchProgress.deleteAll(
page.entrys.map((e) => e.cid.toString()),
page.entries.map((e) => e.cid.toString()),
);
await _downloadService.deletePage(
pageDirPath: page.dirPath,