mirror of
https://github.com/fiso64/slsk-batchdl.git
synced 2024-12-22 22:42:41 +00:00
commit
This commit is contained in:
parent
bfc4fe8ab8
commit
4e291427f7
1 changed files with 1 additions and 1 deletions
|
@ -2434,7 +2434,7 @@ static class Program
|
|||
{
|
||||
int l1 = (int)sortedTracks[j].Item2.Length;
|
||||
int l2 = (int)sortedTracks[i].Item2.Length;
|
||||
if (Math.Abs(l1 - l2) <= necessaryCond.LengthTolerance)
|
||||
if (necessaryCond.LengthTolerance == -1 || Math.Abs(l1 - l2) <= necessaryCond.LengthTolerance)
|
||||
{
|
||||
subGroup.Add(sortedTracks[j]);
|
||||
j++;
|
||||
|
|
Loading…
Reference in a new issue