diff --git a/apps/files_sharing/lib/Command/ExiprationNotification.php b/apps/files_sharing/lib/Command/ExiprationNotification.php index f4f41dc7011d0..dcff1d1ce2ec5 100644 --- a/apps/files_sharing/lib/Command/ExiprationNotification.php +++ b/apps/files_sharing/lib/Command/ExiprationNotification.php @@ -8,6 +8,7 @@ */ namespace OCA\Files_Sharing\Command; +use OCA\Files_Sharing\OrphanHelper; use OCP\AppFramework\Utility\ITimeFactory; use OCP\IDBConnection; use OCP\Notification\IManager as NotificationManager; @@ -30,7 +31,9 @@ class ExiprationNotification extends Command { public function __construct(ITimeFactory $time, NotificationManager $notificationManager, IDBConnection $connection, - ShareManager $shareManager) { + ShareManager $shareManager, + private OrphanHelper $orphanHelper, + ) { parent::__construct(); $this->notificationManager = $notificationManager; @@ -62,7 +65,8 @@ public function execute(InputInterface $input, OutputInterface $output): int { foreach ($shares as $share) { if ($share->getExpirationDate() === null || $share->getExpirationDate()->getTimestamp() < $minTime->getTimestamp() - || $share->getExpirationDate()->getTimestamp() > $maxTime->getTimestamp()) { + || $share->getExpirationDate()->getTimestamp() > $maxTime->getTimestamp() + || !$this->orphanHelper->isShareValid($share->getSharedBy(), $share->getNodeId())) { continue; }