mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge pull request #1367 from erri120/more-nullability-errors
More nullability errors
This commit is contained in:
commit
5e5465396e
@ -585,7 +585,8 @@ namespace Wabbajack.Lib
|
||||
var grouped = ModList.Directives.OfType<InlineFile>()
|
||||
.Where(f => f.SourceDataID == default)
|
||||
.GroupBy(f => f.SourceDataFile)
|
||||
.ToDictionary(f => f.Key);
|
||||
.Where(x => x.Key != null)
|
||||
.ToDictionary(f => f.Key!);
|
||||
|
||||
if (grouped.Count == 0) return;
|
||||
await VFS.Extract(Queue, grouped.Keys.ToHashSet(), async (vf, sfn) =>
|
||||
|
@ -103,7 +103,7 @@ namespace Wabbajack
|
||||
this IObservable<TRet> source,
|
||||
ViewModel vm,
|
||||
string property,
|
||||
TRet initialValue = default,
|
||||
TRet? initialValue = default,
|
||||
bool deferSubscription = false)
|
||||
{
|
||||
return source
|
||||
|
Loading…
Reference in New Issue
Block a user