Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

aa #673

Merged
merged 1 commit into from
Dec 23, 2024
Merged

aa #673

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion app/src/main/java/ceui/pixiv/ui/task/LoadTask.kt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ open class LoadTask(

val file = downloadFile()
if (file != null) {
_result.value = file
file?.let {
_result.value = it
}
_status.value = TaskStatus.Finished
onEnd(file)
} else {
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/ceui/pixiv/ui/task/QueuedRunnable.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ abstract class QueuedRunnable<ResultT> {
protected val _status = MutableLiveData<TaskStatus>(TaskStatus.NotStart)
val status: LiveData<TaskStatus> = _status

protected val _result = MutableLiveData<File>()
val result: LiveData<File> get() = _result
protected val _result = MutableLiveData<ResultT>()
val result: LiveData<ResultT> get() = _result

open val taskId = UUID.randomUUID().hashCode().toLong()

Expand Down
Loading