Skip to content

Commit 0992901

Browse files
author
maximv
committed
fixes the CI
1 parent abb5761 commit 0992901

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DryIoc/Container.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1777,7 +1777,7 @@ private KV<object, Factory>[] CombineRegisteredWithDynamicFactories(
17771777

17781778
return true;
17791779
},
1780-
x => KV.Of(x.ServiceKey ?? (dynamicKey = dynamicKey.Next()), x.Factory));
1780+
x => KV.Of(x.ServiceKey ?? (dynamicKey = dynamicKey?.Next() ?? DefaultDynamicKey.Value), x.Factory));
17811781

17821782
resultFactories = resultFactories.Append(remainingDynamicFactories);
17831783
}

0 commit comments

Comments
 (0)