mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: initial upload message not being dismissed (#7438)
This commit is contained in:
parent
4711468598
commit
5fe846de1d
@ -53,7 +53,7 @@ export class UploadDocumentsService {
|
||||
)
|
||||
status.message = $localize`Uploading...`
|
||||
} else if (event.type == HttpEventType.Response) {
|
||||
status.taskId = event.body['task_id']
|
||||
status.taskId = event.body['task_id'] ?? event.body.toString()
|
||||
status.message = $localize`Upload complete, waiting...`
|
||||
this.uploadSubscriptions[file.name]?.complete()
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user