Skip to content

Commit 8aa6c7e

Browse files
committed
fixed delay from 20s to 5s
1 parent 9ceb7c5 commit 8aa6c7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

App/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ protected override void OnLaunched(LaunchActivatedEventArgs args)
166166

167167
// Initialize file sync.
168168

169-
_ = Task.Delay(20000).ContinueWith((_) =>
169+
_ = Task.Delay(5000).ContinueWith((_) =>
170170
{
171171
var syncSessionCts = new CancellationTokenSource(TimeSpan.FromSeconds(10));
172172
var syncSessionController = _services.GetRequiredService<ISyncSessionController>();

0 commit comments

Comments
 (0)