Skip to content

Commit f057d64

Browse files
authored
Jennyf/fix legacy (#1266)
* add .Clone() for roles bug * fix legacy options
1 parent 5ec6557 commit f057d64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.Identity.Web/MergedOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ internal static void UpdateMergedOptionsFromConfidentialClientApplicationOptions
275275
}
276276

277277
mergedOptions.IsDefaultPlatformLoggingEnabled = confidentialClientApplicationOptions.IsDefaultPlatformLoggingEnabled;
278-
mergedOptions.LegacyCacheCompatibilityEnabled = confidentialClientApplicationOptions.LegacyCacheCompatibilityEnabled;
278+
// mergedOptions.LegacyCacheCompatibilityEnabled = confidentialClientApplicationOptions.LegacyCacheCompatibilityEnabled; // must be set through id web options
279279
mergedOptions.LogLevel = confidentialClientApplicationOptions.LogLevel;
280280
if (string.IsNullOrEmpty(mergedOptions.RedirectUri) && !string.IsNullOrEmpty(confidentialClientApplicationOptions.RedirectUri))
281281
{

0 commit comments

Comments
 (0)