diff --git a/Qwilight/System/MediaInputSystem.cs b/Qwilight/System/MediaInputSystem.cs index 2c6f4c4..33eaec2 100644 --- a/Qwilight/System/MediaInputSystem.cs +++ b/Qwilight/System/MediaInputSystem.cs @@ -33,7 +33,7 @@ _mediaInputComputer = await t; _mediaInputComputer.FrameArrived += OnMediaFrameAvailable; await _mediaInputComputer.StartAsync(); - }); + }, TaskContinuationOptions.ExecuteSynchronously); } } } diff --git a/Qwilight/ViewModel/VoteViewModel.cs b/Qwilight/ViewModel/VoteViewModel.cs index 8c69949..28697bc 100644 --- a/Qwilight/ViewModel/VoteViewModel.cs +++ b/Qwilight/ViewModel/VoteViewModel.cs @@ -84,7 +84,7 @@ }).ToArray()); } IsVoteGroupLoading = false; - }); + }, TaskContinuationOptions.ExecuteSynchronously); } } } diff --git a/Qwilight/ViewModel/WwwLevelViewModel.cs b/Qwilight/ViewModel/WwwLevelViewModel.cs index bc2f027..c2d43c4 100644 --- a/Qwilight/ViewModel/WwwLevelViewModel.cs +++ b/Qwilight/ViewModel/WwwLevelViewModel.cs @@ -710,7 +710,7 @@ NotifyIsCompatible(); } IsLevelItemLoading = false; - }); + }, TaskContinuationOptions.ExecuteSynchronously); } } } @@ -768,7 +768,7 @@ LevelName ??= _lastLevelName ?? LevelNameCollection.FirstOrDefault(); } IsLevelNamesLoading = false; - }); + }, TaskContinuationOptions.ExecuteSynchronously); } } } @@ -825,7 +825,7 @@ WwwLevelItemValue ??= _lastWwwLevelItem ?? WwwLevelItemCollection.FirstOrDefault(); } IsLevelNameLoading = false; - }); + }, TaskContinuationOptions.ExecuteSynchronously); } } }