fix: list items lock race (#7133)
Co-authored-by: Tom <144813356+ttalty@users.noreply.github.com>
This commit is contained in:
parent
4d5c955018
commit
6199e58532
|
@ -126,16 +126,17 @@ export class ListCommand {
|
||||||
ciphers = this.searchService.searchCiphersBasic(ciphers, options.search, options.trash);
|
ciphers = this.searchService.searchCiphersBasic(ciphers, options.search, options.trash);
|
||||||
}
|
}
|
||||||
|
|
||||||
ciphers.forEach((c, index) => {
|
for (let i = 0; i < ciphers.length; i++) {
|
||||||
|
const c = ciphers[i];
|
||||||
// Set upload immediately on the last item in the ciphers collection to avoid the event collection
|
// Set upload immediately on the last item in the ciphers collection to avoid the event collection
|
||||||
// service from uploading each time.
|
// service from uploading each time.
|
||||||
this.eventCollectionService.collect(
|
await this.eventCollectionService.collect(
|
||||||
EventType.Cipher_ClientViewed,
|
EventType.Cipher_ClientViewed,
|
||||||
c.id,
|
c.id,
|
||||||
index === ciphers.length - 1,
|
i === ciphers.length - 1,
|
||||||
c.organizationId,
|
c.organizationId,
|
||||||
);
|
);
|
||||||
});
|
}
|
||||||
|
|
||||||
const res = new ListResponse(ciphers.map((o) => new CipherResponse(o)));
|
const res = new ListResponse(ciphers.map((o) => new CipherResponse(o)));
|
||||||
return Response.success(res);
|
return Response.success(res);
|
||||||
|
|
Loading…
Reference in New Issue