mirror of
https://github.com/NohamR/N_m3u8DL-RE.git
synced 2025-05-24 22:32:00 +00:00
修正返回空列表的BUG
This commit is contained in:
parent
b705f405e9
commit
771f842e20
@ -58,7 +58,7 @@ namespace N_m3u8DL_RE.Util
|
||||
|
||||
public static List<StreamSpec> DoFilterDrop(IEnumerable<StreamSpec> lists, StreamFilter? filter)
|
||||
{
|
||||
if (filter == null) return new List<StreamSpec>();
|
||||
if (filter == null) return new List<StreamSpec>(lists);
|
||||
|
||||
var inputs = lists.Where(_ => true);
|
||||
var selected = DoFilterKeep(lists, filter);
|
||||
|
Loading…
x
Reference in New Issue
Block a user