Bug fix: Provide seed to Aggregate op(for Sequence contains no elements exception, all type was filtered by Where(type => type.BaseType != null) op)
This commit is contained in:
parent
43a9ee42aa
commit
2c9c4fbc65
|
@ -127,7 +127,7 @@ namespace StardewModdingAPI.Framework.ModLoading.Framework
|
|||
return Tuple.Create(anyRewritten, e);
|
||||
}
|
||||
})
|
||||
.Aggregate((a, b) => Tuple.Create(a.Item1 || b.Item1, a.Item2 ?? b.Item2));
|
||||
.Aggregate(Tuple.Create(false, null as Exception), (a, b) => Tuple.Create(a.Item1 || b.Item1, a.Item2 ?? b.Item2));
|
||||
|
||||
bool rewritten = result.Item1;
|
||||
Exception exception = result.Item2;
|
||||
|
|
Loading…
Reference in New Issue