From e7e8064ddf59b149e84ccffae9b2d899c1eda384 Mon Sep 17 00:00:00 2001 From: Steffen Balslev Date: Tue, 11 Feb 2025 18:21:45 +0100 Subject: [PATCH] Update implementation to also test for IsSaaSInfrastructure --- .../AppSource Gallery/src/AppSrcProductDepsProvider.Codeunit.al | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System Application/App/AppSource Gallery/src/AppSrcProductDepsProvider.Codeunit.al b/src/System Application/App/AppSource Gallery/src/AppSrcProductDepsProvider.Codeunit.al index 0a6321286c..1c92fca417 100644 --- a/src/System Application/App/AppSource Gallery/src/AppSrcProductDepsProvider.Codeunit.al +++ b/src/System Application/App/AppSource Gallery/src/AppSrcProductDepsProvider.Codeunit.al @@ -44,7 +44,7 @@ codeunit 2518 "AppSrc Product Deps. Provider" implements "AppSource Product Mana var EnvironmentInformation: Codeunit "Environment Information"; begin - exit(EnvironmentInformation.IsSaas()); + exit(EnvironmentInformation.IsSaas() and EnvironmentInformation.IsSaaSInfrastructure()); end; procedure GetFormatRegionOrDefault(FormatRegion: Text[80]): Text