Skip to content

Commit 39866ae

Browse files
committed
Fix transforming custom to standard entity creating doubles
1 parent e9e7ddc commit 39866ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Services/Entity/TransformService.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -300,12 +300,12 @@ protected function specialToMisc(): Entity
300300
{
301301
$this->orphanChildren();
302302

303-
// Create misc
303+
// Create misc without calling its observers, to not create duplicates
304304
$this->new = $this->entityType->getMiscClass();
305305
$this->new->name = $this->entity->name;
306306
$this->new->is_private = $this->entity->is_private;
307307
$this->new->campaign_id = $this->campaign->id;
308-
$this->new->save();
308+
$this->new->saveQuietly();
309309

310310
$this->finish();
311311

0 commit comments

Comments
 (0)