diff --git a/Apps/W1/File - Azure Blob Service Connector/app/app.json b/Apps/W1/File - Azure Blob Service Connector/app/app.json index ab7b0f06db..be4bbb830d 100644 --- a/Apps/W1/File - Azure Blob Service Connector/app/app.json +++ b/Apps/W1/File - Azure Blob Service Connector/app/app.json @@ -10,18 +10,17 @@ "help": "https://go.microsoft.com/fwlink/?linkid=2134520", "url": "https://go.microsoft.com/fwlink/?linkid=724011", "logo": "ExtensionLogo.png", - "application": "24.0.0.0", + "application": "25.0.0.0", "internalsVisibleTo": [], "dependencies": [], "screenshots": [], - "platform": "24.0.0.0", + "platform": "25.0.0.0", "idRanges": [ { "from": 80100, "to": 80199 } ], - "target": "OnPrem", "resourceExposurePolicy": { "allowDebugging": false, "allowDownloadingSource": true, diff --git a/Apps/W1/File - Azure Blob Service Connector/app/src/BlobStorageAccountWizard.Page.al b/Apps/W1/File - Azure Blob Service Connector/app/src/BlobStorageAccountWizard.Page.al index 5272131235..8d4e9071ef 100644 --- a/Apps/W1/File - Azure Blob Service Connector/app/src/BlobStorageAccountWizard.Page.al +++ b/Apps/W1/File - Azure Blob Service Connector/app/src/BlobStorageAccountWizard.Page.al @@ -93,7 +93,7 @@ page 80101 "Blob Storage Account Wizard" BlobStorageConnectorImpl: Codeunit "Blob Storage Connector Impl."; begin CurrPage.Update(); - BlobStorageConnectorImpl.LookUpContainer(Rec, "Authorization Type", Secret, Text); + BlobStorageConnectorImpl.LookUpContainer(Rec, Rec."Authorization Type", Secret, Text); exit(true); end; diff --git a/Apps/W1/File - Azure Blob Service Connector/app/src/BlobStorageConnectorImpl.Codeunit.al b/Apps/W1/File - Azure Blob Service Connector/app/src/BlobStorageConnectorImpl.Codeunit.al index 2189c88871..7173ca8616 100644 --- a/Apps/W1/File - Azure Blob Service Connector/app/src/BlobStorageConnectorImpl.Codeunit.al +++ b/Apps/W1/File - Azure Blob Service Connector/app/src/BlobStorageConnectorImpl.Codeunit.al @@ -475,11 +475,10 @@ codeunit 80100 "Blob Storage Connector Impl." implements "File System Connector" FilePaginationData.SetEndOfListing(ABSOperationResponse.GetNextMarker() = ''); end; - [NonDebuggable] local procedure SetReadySAS(var StorageServiceAuthorization: Codeunit "Storage Service Authorization"; Secret: SecretText): Interface System.Azure.Storage."Storage Service Authorization" begin - exit(StorageServiceAuthorization.UseReadySAS(Secret.Unwrap())); + exit(StorageServiceAuthorization.UseReadySAS(Secret)); end; local procedure PathSeparator(): Text