fix(syncing-server): increase chances for notifying of items change to 70%
This commit is contained in:
parent
c949670d4c
commit
199ebeb4ea
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ export class SaveItems implements UseCaseInterface<SaveItemsResult> {
|
|||
|
||||
const tenPercentSpreadArray = Array.from(Array(10).keys())
|
||||
const diceRoll = this.deterministicSelector.select(dto.userUuid, tenPercentSpreadArray)
|
||||
if (diceRoll > 2) {
|
||||
if (diceRoll > 6) {
|
||||
this.logger.debug(`[${dto.userUuid}] Not sending items changed event to client.`)
|
||||
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue