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 b64c494 commit ccfadd2Copy full SHA for ccfadd2
src/Files.App/Utils/Git/GitHelpers.cs
@@ -34,9 +34,9 @@ internal static class GitHelpers
34
35
private static readonly PullOptions _pullOptions = new();
36
37
- private static readonly string _clientId = AppLifecycleHelper.AppEnvironment is not AppEnvironment.Dev
38
- ? CLIENT_ID_SECRET
39
- : string.Empty;
+ private static readonly string _clientId = AppLifecycleHelper.AppEnvironment is AppEnvironment.Dev
+ ? string.Empty
+ : CLIENT_ID_SECRET;
40
41
private static readonly SemaphoreSlim GitOperationSemaphore = new SemaphoreSlim(1, 1);
42
0 commit comments