Skip to content

Commit f0e3a98

Browse files
committed
Fix for #86
1 parent 4d6033e commit f0e3a98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Binance/Extensions/StringExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static CandlestickInterval ToCandlestickInterval(this string s)
3838
{
3939
Throw.IfNullOrWhiteSpace(s, nameof(s));
4040

41-
switch (s.Trim().ToLower())
41+
switch (s.Trim())
4242
{
4343
case "1m": return CandlestickInterval.Minute;
4444
case "3m": return CandlestickInterval.Minutes_3;

0 commit comments

Comments
 (0)