Skip to content

Commit ad6e244

Browse files
authored
Merge pull request #123 from keboola/ondra-fix-inc-fetching
fix inc fetching
2 parents 37dbdd2 + 001a5d3 commit ad6e244

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

  • src/GoogleAnalytics
  • tests/functional/query-data-ranges-last-run/expected/data/out/tables

src/GoogleAnalytics/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ public static function getDelayFn(int $base = 5000): \Closure
437437
public function getStartDate(string $startDate): string
438438
{
439439
if ($startDate === Config::STATE_LAST_RUN_DATE) {
440-
$startDate = $this->inputState[Config::STATE_LAST_RUN_DATE] ?? '2015-08-13';
440+
$startDate = $this->inputState[Config::STATE_LAST_RUN_DATE] ?? '2015-08-14';
441441
}
442442
return $startDate;
443443
}

tests/functional/query-data-ranges-last-run/expected/data/out/tables/users.csv

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
"id","idProfile","date","pageviews"
2-
"e1d1fbbee5da9f1f77ec3b0d4e99efd693c728e5","184062725","2015-08-13","0"
32
"834150284d702ba6d290b36ae0a7254cfcf6bbcf","184062725","2015-08-14","0"
43
"e3c13491127a3ddb754ae588a19de1d5fc17f138","184062725","2015-08-15","0"
54
"1b6f3aefc44854359d30a18d6d3e0e0ef0c1ee1a","184062725","2015-08-16","0"

0 commit comments

Comments
 (0)