We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b010f5 commit 98297aeCopy full SHA for 98297ae
Refresher.Core/Pipelines/Steps/GetConsoleIdpsStep.cs
@@ -13,9 +13,12 @@ public override Task ExecuteAsync(CancellationToken cancellationToken = default)
13
{
14
ConsolePatchAccessor? accessor = this.Pipeline.Accessor as ConsolePatchAccessor;
15
Debug.Assert(accessor != null);
16
-
17
- this.Encryption.ConsoleIdps = accessor.IdpsFile.Value;
18
- // ^ is lazy<t>, will generate upon use
+
+ if (this.Game.ShouldUseNpdrmEncryption.GetValueOrDefault())
+ {
19
+ this.Encryption.ConsoleIdps = accessor.IdpsFile.Value;
20
+ // ^ is lazy<t>, will generate upon use
21
+ }
22
23
return Task.CompletedTask;
24
}
0 commit comments