Changed Regex

This commit is contained in:
margaale 2017-08-17 14:14:11 -03:00 committed by Taloth Saldono
parent 58423d4b32
commit 13a9703eaa
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ namespace NzbDrone.Core.Download.Clients.DownloadStation
{
var info = GetInfo(settings);
Regex regex = new Regex(@"(\bDSM\b (?<version>[\d.]*)){1}");
Regex regex = new Regex(@"DSM (?<version>[\d.]*)");
var dsmVersion = regex.Match(info.Version).Groups["version"].Value;