Skip to content

Commit

Permalink
Fix for #86
Browse files Browse the repository at this point in the history
  • Loading branch information
sonvister committed Apr 23, 2018
1 parent 4d6033e commit f0e3a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Binance/Extensions/StringExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static CandlestickInterval ToCandlestickInterval(this string s)
{
Throw.IfNullOrWhiteSpace(s, nameof(s));

switch (s.Trim().ToLower())
switch (s.Trim())
{
case "1m": return CandlestickInterval.Minute;
case "3m": return CandlestickInterval.Minutes_3;
Expand Down

0 comments on commit f0e3a98

Please sign in to comment.