|
@@ -355,7 +355,7 @@ class MacroServiceProvider extends ServiceProvider
|
355
|
355
|
return null;
|
356
|
356
|
}
|
357
|
357
|
|
358
|
|
- $timezone ??= $column->getTimezone() ?? CompanySettingsService::getDefaultTimezone();
|
|
358
|
+ $timezone ??= CompanySettingsService::getDefaultTimezone();
|
359
|
359
|
|
360
|
360
|
// Use shiftTimezone to shift UTC calendar date to the specified timezone
|
361
|
361
|
// Using setTimezone would convert which is wrong for calendar dates
|
|
@@ -386,7 +386,7 @@ class MacroServiceProvider extends ServiceProvider
|
386
|
386
|
return null;
|
387
|
387
|
}
|
388
|
388
|
|
389
|
|
- $timezone ??= $entry->getTimezone() ?? CompanySettingsService::getDefaultTimezone();
|
|
389
|
+ $timezone ??= CompanySettingsService::getDefaultTimezone();
|
390
|
390
|
|
391
|
391
|
// Use shiftTimezone to shift UTC calendar date to the specified timezone
|
392
|
392
|
// Using setTimezone would convert which is wrong for calendar dates
|