mirror of
https://github.com/Radarr/Radarr
synced 2025-03-14 16:09:37 +00:00
Align environment variable setting in ProcessProvider with upstream
Co-authored-by: Qstick <376117+Qstick@users.noreply.github.com> Closes #5617 (cherry picked from commit 8f482c534f15c14a9b3097313a4f5e9273549d88)
This commit is contained in:
parent
51901dbb37
commit
06a214e901
1 changed files with 1 additions and 8 deletions
|
@ -131,14 +131,7 @@ namespace NzbDrone.Common.Processes
|
|||
var key = environmentVariable.Key.ToString();
|
||||
var value = environmentVariable.Value?.ToString();
|
||||
|
||||
if (startInfo.EnvironmentVariables.ContainsKey(key))
|
||||
{
|
||||
startInfo.EnvironmentVariables[key] = value;
|
||||
}
|
||||
else
|
||||
{
|
||||
startInfo.EnvironmentVariables.Add(key, value);
|
||||
}
|
||||
startInfo.EnvironmentVariables[key] = value;
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue