Skip to content

Commit

Permalink
added missing $ to filter
Browse files Browse the repository at this point in the history
  • Loading branch information
daveismynamecom committed Nov 11, 2018
1 parent 8fcd4e8 commit cb29b32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Api/ToDo.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public function getTasks($top = 25, $skip = 0, $params = [])
$skip = request('skip', $skip);

$params = http_build_query([
"\filter" => "status eq 'notStarted'",
"\$filter" => "status eq 'notStarted'",
"\$top" => $top,
"\$skip" => $skip,
"\$count" => "true",
Expand Down

0 comments on commit cb29b32

Please sign in to comment.