Trim quotes from dsm version parts.

This commit is contained in:
Taloth Saldono 2017-11-11 23:20:04 +01:00
parent 7a1c1064ae
commit 2c13fcf579
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ namespace NzbDrone.Mono.EnvironmentInfo.VersionAdapters
if (parts.Length >= 2)
{
var key = parts[0];
var value = parts[1];
var value = parts[1].Trim('"');
if (!string.IsNullOrWhiteSpace(value))
{
@ -75,4 +75,4 @@ namespace NzbDrone.Mono.EnvironmentInfo.VersionAdapters
public bool Enabled => OsInfo.IsLinux;
}
}
}