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:
ZaneYork 2020-06-04 18:29:27 +08:00
parent 43a9ee42aa
commit 2c9c4fbc65
1 changed files with 1 additions and 1 deletions

View File

@ -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;