From d6cf6c6e00e02537de9cc207c0ec495bfeea7a7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Maro=C5=84?= Date: Thu, 2 Mar 2023 08:45:50 +0100 Subject: [PATCH] Make sure the return value is returned ;) --- src/Storage/SPBPLIsoStoreManager.Codeunit.al | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Storage/SPBPLIsoStoreManager.Codeunit.al b/src/Storage/SPBPLIsoStoreManager.Codeunit.al index 0503ee3..8793490 100644 --- a/src/Storage/SPBPLIsoStoreManager.Codeunit.al +++ b/src/Storage/SPBPLIsoStoreManager.Codeunit.al @@ -42,7 +42,7 @@ codeunit 71038 "SPBPL IsoStore Manager" IsolatedStorage.Set(StrSubstNo(NameMapTok, SPBExtensionLicense."Entry Id", StoreName), StoreValue, DataScope::Module); end; - internal procedure GetAppValue(SPBExtensionLicense: Record "SPBPL Extension License"; StoreName: Text; ReturnValue: Text) Found: Boolean + internal procedure GetAppValue(SPBExtensionLicense: Record "SPBPL Extension License"; StoreName: Text; var ReturnValue: Text) Found: Boolean begin Found := IsolatedStorage.Get(StrSubstNo(NameMapTok, SPBExtensionLicense."Entry Id", StoreName), DataScope::Module, ReturnValue); if EnvironmentInformation.IsOnPrem() and CryptographyManagement.IsEncryptionEnabled() and CryptographyManagement.IsEncryptionPossible() then