Skip to content

Commit

Permalink
bugfix: API seems to be case sensitive now
Browse files Browse the repository at this point in the history
  • Loading branch information
davidvidmar committed Oct 9, 2019
1 parent 3729e0d commit 92629ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Crycker/Data/BitstampTickerProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public string TickerUrl

protected string BaseUrl
{
get { return $"https://www.bitstamp.net/api/v2/ticker/{_coin}{_currency}/"; }
get { return $"https://www.bitstamp.net/api/v2/ticker/{_coin.ToLower()}{_currency.ToLower()}/"; }
}

public async Task UpdateData()
Expand Down

0 comments on commit 92629ae

Please sign in to comment.