This commit is contained in:
My-Responsitories
2026-01-07 15:01:13 +08:00
parent 678cc919c7
commit a575fc7627
8 changed files with 52 additions and 47 deletions

View File

@@ -36,7 +36,7 @@ class BiliDownloadEntryInfo with MultiSelectData {
late String pageDirPath;
late String entryDirPath;
DownloadStatus? status;
DownloadStatus status = .wait;
int get cid => source?.cid ?? pageData!.cid;
@@ -398,4 +398,6 @@ enum DownloadStatus {
final String message;
const DownloadStatus(this.message);
bool get isDownloading => index <= 3;
}