Commit e934cb24 by Vladislav

fix CheckCampaignsChanges

1 parent aacaef03
Showing with 2 additions and 2 deletions
...@@ -58,12 +58,12 @@ class CheckChanges extends DirectRequest ...@@ -58,12 +58,12 @@ class CheckChanges extends DirectRequest
} }
$this->getToken()->update([ $this->getToken()->update([
'check_changes_ad_group' => Carbon::createFromTimestamp($response['result']['Timestamp']), 'check_changes_ad_group' => Carbon::parse($response['result']['Timestamp']),
]); ]);
} else { } else {
$this->getToken()->update([ $this->getToken()->update([
'check_changes' => Carbon::createFromTimestamp($response['result']['Timestamp']), 'check_changes' => Carbon::parse($response['result']['Timestamp']),
]); ]);
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!