Skip to content

Commit 9a7f032

Browse files
authored
Fix: minor timezone error
1 parent f774d1d commit 9a7f032

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DiscordHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ private function buildEmbeds(LogRecord $record, array $logInfo, array $fields):
356356
'title' => $this->buildTitle($logInfo),
357357
'description' => $this->buildDescription($record),
358358
'color' => $logInfo['color'],
359-
'timestamp' => $record->datetime->setTimezone(new DateTimeZone($this->timezone))->format('Y-m-d\TH:i:s.vP')
359+
'timestamp' => $record->datetime->setTimezone(new DateTimeZone($this->timezone))->format('Y-m-d\TH:i:s.vP'),
360360
'fields' => $fields,
361361
'footer' => [
362362
'text' => $this->suffix . ' • Laravel Discord Logger',

0 commit comments

Comments
 (0)