There was an error while loading. Please reload this page.
1 parent dc73136 commit dec94feCopy full SHA for dec94fe
1 file changed
src/Files.App/ViewModels/ShellViewModel.cs
@@ -3242,11 +3242,11 @@ public void UpdateDateDisplay()
3242
{
3243
App.Logger.LogDebug($"UpdateDateDisplay: itemCount={filesAndFolders.Count}");
3244
3245
- filesAndFolders.ToList().AsParallel().ForAll(async item =>
+ foreach (var item in filesAndFolders.ToList())
3246
3247
if (item.IsRealChanges)
3248
- await dispatcherQueue.EnqueueOrInvokeAsync(item.UpdateReal);
3249
- });
+ item.UpdateReal();
+ }
3250
}
3251
3252
public void Dispose()
0 commit comments