Skip to content

Commit

Permalink
Revert back change
Browse files Browse the repository at this point in the history
  • Loading branch information
bnymn committed Oct 8, 2018
1 parent fd0ab03 commit 1b03c19
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/code/Magento/Newsletter/Model/Queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,7 @@ public function setQueueStartAtByString($startAt)
if ($startAt === null || $startAt == '') {
$this->setQueueStartAt(null);
} else {
$startAt = $this->timezone->convertConfigTimeToUtcWithPattern($startAt, 'Y-m-d H:i:s', null);
$this->setQueueStartAt($startAt);
$this->setQueueStartAt($this->timezone->convertConfigTimeToUtc($startAt));
}
return $this;
}
Expand Down

0 comments on commit 1b03c19

Please sign in to comment.