File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
backend/app/Services/Application/Handlers/EventSettings Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,9 @@ public function handle(PartialUpdateEventSettingsDTO $eventSettingsDTO): EventSe
6565
6666 'order_timeout_in_minutes ' => $ eventSettingsDTO ->settings ['order_timeout_in_minutes ' ] ?? $ existingSettings ->getOrderTimeoutInMinutes (),
6767 'website_url ' => $ eventSettingsDTO ->settings ['website_url ' ] ?? $ existingSettings ->getWebsiteUrl (),
68- 'maps_url ' => $ eventSettingsDTO ->settings ['maps_url ' ] ?? $ existingSettings ->getMapsUrl (),
68+ 'maps_url ' => array_key_exists ('maps_url ' , $ eventSettingsDTO ->settings )
69+ ? $ eventSettingsDTO ->settings ['maps_url ' ]
70+ : $ existingSettings ->getMapsUrl (),
6971 'location_details ' => $ locationDetails ,
7072 'is_online_event ' => $ eventSettingsDTO ->settings ['is_online_event ' ] ?? $ existingSettings ->getIsOnlineEvent (),
7173 'online_event_connection_details ' => array_key_exists ('online_event_connection_details ' , $ eventSettingsDTO ->settings )
You can’t perform that action at this time.
0 commit comments