Skip to content

Commit 2020c27

Browse files
authored
StoreInitialize bug #535
1 parent c689e0d commit 2020c27

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Docs/releases.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Releases
22

3+
## New in 6.7
4+
* Fix StoreInitialize error ([#535](https://github.com/mrpmorris/Fluxor/issues/535))
5+
36
## New in 6.6
47
* Allow DependencyInjection >=8 < 10 for .net 8 ([#530](https://github.com/mrpmorris/Fluxor/issues/530))
58

Source/Lib/Fluxor/Store.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ private async Task ActivateStoreAsync()
267267
{
268268
HasActivatedStore = true;
269269
DequeueActions();
270-
InitializedCompletionSource.SetResult(true);
270+
InitializedCompletionSource.TrySetResult(true);
271271
}
272272
}
273273

0 commit comments

Comments
 (0)