Skip to content

Commit ba45434

Browse files
authored
Fixed bug on datetime conversion
1 parent ac0f97e commit ba45434

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

smarther-c2c.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ public function __construct($notification) {
3838

3939
if (isset($notification["activationTime"])) {
4040
// "activationTime":"2019-02-20T23:30:00Z"
41-
$tmpActTime = date_create_from_format('Y-m-d\TH:i:s\Z', $notification["activationTime"]);
41+
$tmpActTime = date_create_from_format('Y-m-d\TH:i:s', $notification["activationTime"]);
4242
$tmpTomorrow = date_create_from_format('Y-m-d H:i:s', date_format(date_create('tomorrow'), 'Y-m-d').' 00:00:00');
4343
$tmpDayAfter = date_add($tmpTomorrow, date_interval_create_from_date_string('+1 day'));
4444

4545
if ($tmpActTime < $tmpTomorrow) {
46-
$this->thTime = "Today at ".date_format($tmpActTime, 'H:i');
46+
$this->thTime = "Today at ".date_format($tmpActTime, 'H:i');
4747
}
4848
elseif ($tmpActTime < $tmpDayAfter) {
4949
$this->thTime = "Tomorrow at ".date_format($tmpActTime, 'H:i');

0 commit comments

Comments
 (0)