From 44b6b40f0592136d8ccfe909d8d30afccd9de145 Mon Sep 17 00:00:00 2001
From: owenbush <ojb@ukhhf.co.uk>
Date: Fri, 8 May 2020 15:42:00 -0600
Subject: [PATCH] Excluded/Included dates should be empty arrays if no values

---
 src/EventCreationService.php | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/EventCreationService.php b/src/EventCreationService.php
index 97e0ae3d..27fd60c8 100644
--- a/src/EventCreationService.php
+++ b/src/EventCreationService.php
@@ -207,6 +207,7 @@ class EventCreationService {
 
     $config['type'] = $user_input['recur_type'];
 
+    $config['excluded_dates'] = $config['included_dates'] = [];
     if (!empty($user_input['excluded_dates'])) {
       $config['excluded_dates'] = $this->getDatesFromForm($user_input['excluded_dates']);
     }
-- 
GitLab