Skip to content

Commit

Permalink
Improve vod worker
Browse files Browse the repository at this point in the history
  • Loading branch information
fgl27 committed Oct 23, 2024
1 parent 1c4538a commit 75c79b9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app/specific/Main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2624,6 +2624,16 @@ function Main_SetHistoryworker() {
updateobj: JSON.parse(obj.responseText),
delete: false
});
} else {
var response = JSON.parse(obj.responseText);

if (response.data && !response.data[0]) {
this.postMessage({
data: obj.mData.obj.data[7],
type: obj.mData.type,
delete: true
});
}
}
};
} else if (event.data.type === 'clip') {
Expand Down

0 comments on commit 75c79b9

Please sign in to comment.