Skip to content
Snippets Groups Projects
Commit 34ff584b authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX #14860 TIME 2 fix clear interval lock

(cherry picked from commit 66cbf4d3)
parent 4c57d3a8
No related branches found
No related tags found
No related merge requests found
......@@ -230,6 +230,10 @@ export class ActionsService implements OnDestroy {
})
).subscribe();
if (!this.functions.empty(this.currentResourceLock)) {
clearInterval(this.currentResourceLock);
}
this.currentResourceLock = setInterval(() => {
this.http.put(`../rest/resourcesList/users/${userId}/groups/${groupId}/baskets/${basketId}/lock`, { resources: resIds }).pipe(
tap(() => console.debug(`Cycle lock : `, this.currentResourceLock)),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment