feat: do not modify buildin downloader

This commit is contained in:
Simon Ding
2025-04-22 16:17:04 +08:00
parent 2fad5ea69b
commit 549aaf60ca
3 changed files with 10 additions and 2 deletions

View File

@@ -290,6 +290,10 @@ class DownloadClient {
data["remove_failed_downloads"] = removeFailedDownloads;
return data;
}
bool idExists() {
return id != null && id != 0;
}
}
class StorageSettingData extends AutoDisposeAsyncNotifier<List<Storage>> {