mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[ALL] Rename a few things; fix GetSingleStreamInfo; add headerless DFD
This commit is contained in:
@@ -324,7 +324,10 @@ namespace SabreTools.Helper
|
||||
|
||||
// Loop through and find a Skipper that has the right name
|
||||
logger.Verbose("Beginning search for matching header skip rules");
|
||||
foreach (Skipper skipper in List)
|
||||
List<Skipper> tempList = new List<Skipper>();
|
||||
tempList.AddRange(List);
|
||||
|
||||
foreach (Skipper skipper in tempList)
|
||||
{
|
||||
if (String.IsNullOrEmpty(skipperName) || (!String.IsNullOrEmpty(skipper.Name) && skipperName.ToLowerInvariant() == skipper.Name.ToLowerInvariant()))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user