Fixed bug preventing the Queue UI from being updated with file progress.
This commit is contained in:
parent
0d9f0ded88
commit
e7cc746ee9
1 changed files with 2 additions and 2 deletions
|
|
@ -79,8 +79,8 @@ export const useSocketStore = defineStore('socket', () => {
|
|||
socket.value.on("updated", stream => {
|
||||
const data = JSON.parse(stream);
|
||||
|
||||
if (true === stateStore.has('history', item._id)) {
|
||||
stateStore.update('history', item._id, item);
|
||||
if (true === stateStore.has('history', data._id)) {
|
||||
stateStore.update('history', data._id, data);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue