fixed adding new scrobbles when pulling

This commit is contained in:
andy 2022-02-24 09:49:52 +00:00
parent fbbd42f97a
commit 369595f80c

View File

@ -50,6 +50,16 @@ namespace Selector
toRemove.Add(currentExisting);
}
}
if (toApplyIter.Current is not null)
{
toAdd.Add(toApplyIter.Current);
while (toApplyIter.MoveNext())
{
toAdd.Add(toApplyIter.Current);
}
}
}
else
{