diff --git a/src/Service/TorrentService.php b/src/Service/TorrentService.php index 2a71e58..e06d747 100644 --- a/src/Service/TorrentService.php +++ b/src/Service/TorrentService.php @@ -568,6 +568,10 @@ class TorrentService $this->entityManagerInterface->persist($torrentLocales); $this->entityManagerInterface->flush(); + + $this->updateTorrentLocales( + $torrentLocales->getTorrentId(), + ); } } @@ -695,6 +699,10 @@ class TorrentService $this->entityManagerInterface->persist($torrentSensitive); $this->entityManagerInterface->flush(); + + $this->updateTorrentSensitive( + $torrentSensitive->getTorrentId(), + ); } }