We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c689e0d commit 2020c27Copy full SHA for 2020c27
Docs/releases.md
@@ -1,5 +1,8 @@
1
# Releases
2
3
+## New in 6.7
4
+* Fix StoreInitialize error ([#535](https://github.com/mrpmorris/Fluxor/issues/535))
5
+
6
## New in 6.6
7
* Allow DependencyInjection >=8 < 10 for .net 8 ([#530](https://github.com/mrpmorris/Fluxor/issues/530))
8
Source/Lib/Fluxor/Store.cs
@@ -267,7 +267,7 @@ private async Task ActivateStoreAsync()
267
{
268
HasActivatedStore = true;
269
DequeueActions();
270
- InitializedCompletionSource.SetResult(true);
+ InitializedCompletionSource.TrySetResult(true);
271
}
272
273
0 commit comments