diff --git a/Classes/Service/DestinationDataImportService.php b/Classes/Service/DestinationDataImportService.php index 68caa82..b2e7033 100644 --- a/Classes/Service/DestinationDataImportService.php +++ b/Classes/Service/DestinationDataImportService.php @@ -265,7 +265,9 @@ class DestinationDataImportService $this->tmpCurrentEvent->setLanguageUid(-1); // Set selected Region - $this->tmpCurrentEvent->setRegion($selectedRegion); + if ($selectedRegion !== null) { + $this->tmpCurrentEvent->setRegion($selectedRegion); + } // Set Title $this->tmpCurrentEvent->setTitle(substr($event['title'], 0, 254));