Skip to content

Commit

Permalink
Merge pull request #11 from StefanMaron/patch-1
Browse files Browse the repository at this point in the history
Make sure the return value is returned ;)
  • Loading branch information
JeremyVyska committed Mar 2, 2023
2 parents 25423b4 + d6cf6c6 commit 89d45ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/SPBPLIsoStoreManager.Codeunit.al
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 89d45ad

Please sign in to comment.