Merge pull request #451 from iceljc/master

fix invoke function
This commit is contained in:
C. Oceania 2024-05-10 16:46:25 -05:00 committed by GitHub
commit f1a0973c22
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,7 @@ public partial class RoutingService
if (function == null)
{
message.StopCompletion = true;
message.Content = $"Can't find function implementation of {message.FunctionName}.";
message.Content = $"Can't find function implementation of {name}.";
_logger.LogError(message.Content);
return false;
}