We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0029580 commit 33ade07Copy full SHA for 33ade07
VsCode/Pages/VSCodePage.cs
@@ -90,7 +90,7 @@ public void InitializeItemList()
90
LoadItems = false;
91
92
// set LoadItems to true in 10s
93
- System.Threading.Tasks.Task.Delay(10000).ContinueWith(_ => LoadItems = true);
+ System.Threading.Tasks.Task.Delay(10000).ContinueWith(_ => Interlocked.Exchange(ref LoadItems, true));
94
}
95
96
public override IListItem[] GetItems()
0 commit comments