Make downloadProgress clear about where it comes from.

This commit is contained in:
Brent Simmons
2024-11-29 11:01:17 -08:00
parent 5ef92cbd05
commit 7e42e80b41

View File

@@ -20,9 +20,9 @@ protocol LocalAccountRefresherDelegate {
final class LocalAccountRefresher {
var delegate: LocalAccountRefresherDelegate?
lazy var downloadProgress: DownloadProgress = {
var downloadProgress: DownloadProgress {
downloadSession.downloadProgress
}()
}
private var completion: (() -> Void)? = nil
private var isSuspended = false