Skip to content

Commit

Permalink
fix Error: AA0008 'GetAzureFunctionInterface'.
Browse files Browse the repository at this point in the history
  • Loading branch information
XGWSBOE committed Aug 24, 2023
1 parent 1475fb0 commit 6d2e782
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Modules/System/Azure Function/AzureFunctions.Codeunit.al
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ codeunit 7804 "Azure Functions"
[NonDebuggable]
procedure SendPostRequest(AzureFunctionsAuthentication: Interface "Azure Functions Authentication"; Body: Text; ContentTypeHeader: text): Codeunit "Azure Functions Response"
begin
exit(GetAzureFunctionInterface.SendPostRequest(AzureFunctionsAuthentication, Body, ContentTypeHeader));
exit(GetAzureFunctionInterface().SendPostRequest(AzureFunctionsAuthentication, Body, ContentTypeHeader));
end;

/// <summary>
Expand All @@ -63,7 +63,7 @@ codeunit 7804 "Azure Functions"
[NonDebuggable]
procedure Send(AzureFunctionsAuthentication: Interface "Azure Functions Authentication"; RequestType: enum "Http Request Type"; QueryDict: Dictionary of [Text, Text]; Body: Text; ContentTypeHeader: text): Codeunit "Azure Functions Response"
begin
exit(GetAzureFunctionInterface.Send(AzureFunctionsAuthentication, RequestType, QueryDict, Body, ContentTypeHeader));
exit(GetAzureFunctionInterface().Send(AzureFunctionsAuthentication, RequestType, QueryDict, Body, ContentTypeHeader));
end;

/// <summary>
Expand Down

0 comments on commit 6d2e782

Please sign in to comment.