summaryrefslogtreecommitdiff
path: root/ExcelFunctions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ExcelFunctions.cs')
-rw-r--r--ExcelFunctions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ExcelFunctions.cs b/ExcelFunctions.cs
index adc2323..9394a81 100644
--- a/ExcelFunctions.cs
+++ b/ExcelFunctions.cs
@@ -14,7 +14,7 @@ public static class ExcelFunctions
if (ExcelAsyncUtil.Run(nameof(ExchangeRate), dateField, delegate
{
- return currencyClient.GetCurrencyCourse(date)
+ return currencyClient.GetExchangeRate(date)
.GetAwaiter()
.GetResult() ?? -1m;
}) is not decimal requestResult)