From 9e368042449eb780f4b2d69c787570b592c85d0a Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Sat, 17 Apr 2021 21:03:27 +0200 Subject: [PATCH] =?UTF-8?q?Fix:=20apr=C3=A8s=20d=C3=A9robade,=20impossible?= =?UTF-8?q?=20ouvrir=20fiche?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- module/actor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/actor.js b/module/actor.js index 78ec683d..edbe258f 100644 --- a/module/actor.js +++ b/module/actor.js @@ -1248,7 +1248,7 @@ export class RdDActor extends Actor { let newRencontres = rencontres.filter(it => it.coord != this.getDemiReve()); if (newRencontres.length == rencontres.length) { newRencontres.push(currentRencontre); - await this.update({ "data.reve.rencontre": newRencontres }); + await this.update({ "data.reve.rencontre.list": newRencontres }); } }