Skip to content

Commit

Permalink
Update Stage Endpoint
Browse files Browse the repository at this point in the history
Fix bug in stage endpoint url
  • Loading branch information
joesaunderson committed Jan 24, 2020
1 parent fe3a99a commit 41b0fe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Endpoint/Stage.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function getById(int $stageId)
*/
public function getBySeasonId(int $seasonId)
{
$url = "stages/{$seasonId}";
$url = "stages/season/{$seasonId}";
return $this->call($url);
}
}

0 comments on commit 41b0fe0

Please sign in to comment.