mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
fix: .coins will no longer show double minus sign for negative changes
This commit is contained in:
@@ -238,6 +238,6 @@ public partial class Searches
|
||||
=> value > 0 ? "▲" : "▼";
|
||||
|
||||
private static string GetSign(decimal value)
|
||||
=> value >= 0 ? "+" : "-";
|
||||
=> value >= 0 ? "+" : "";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user