Skip to content

Commit 943037e

Browse files
committed
* Fixed the issue with crash on sleep
* Changed version to 3.4.3
1 parent 51bd315 commit 943037e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Shared/AssemblyInfo.Version.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
using System.Runtime.CompilerServices;
33
using System.Runtime.InteropServices;
44

5-
[assembly: AssemblyVersion("3.4.2.0")]
5+
[assembly: AssemblyVersion("3.4.3.0")]

Squiggle.UI/Components/NetworkSignout.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ async void NetworkChange_NetworkAvailabilityChanged(object sender, System.Net.Ne
4646
{
4747
await Task.Delay(10.Seconds());
4848
if (autoSignout && signInOptions != null && !loggedIn)
49-
signInFunction(signInOptions);
49+
this.dispatcher.Invoke(() => signInFunction(signInOptions));
5050
}
5151
else
5252
{
53-
signoutFunction();
53+
this.dispatcher.Invoke(() => signoutFunction());
5454
if (loggedIn)
5555
{
5656
autoSignout = true;

0 commit comments

Comments
 (0)