Check if photoFilname is set before deleting
This commit is contained in:
parent
d1ba54c9f9
commit
28f71ee479
1 changed files with 4 additions and 1 deletions
|
@ -132,7 +132,10 @@ class OfferController extends AbstractController
|
|||
|
||||
if ($offer->getByUser() === $user)
|
||||
{
|
||||
$offerPhotoHelper->deleteOfferPhoto($photoDir, $offer->getPhotoFilename());
|
||||
if($offer->getPhotoFilename() != null)
|
||||
{
|
||||
$offerPhotoHelper->deleteOfferPhoto($photoDir, $offer->getPhotoFilename());
|
||||
}
|
||||
$this->entityManager->remove($offer);
|
||||
$this->entityManager->flush();
|
||||
$this->addFlash(
|
||||
|
|
Reference in a new issue