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 3cb8188 commit 1727863Copy full SHA for 1727863
src/Files/DataModels/NavigationControlItems/DriveItem.cs
@@ -145,7 +145,7 @@ public static async Task<DriveItem> CreateFromPropertiesAsync(StorageFolder root
145
item.Path = string.IsNullOrEmpty(root.Path) ? $"\\\\?\\{root.Name}\\" : root.Path;
146
item.DeviceID = deviceId;
147
item.Root = root;
148
- await CoreApplication.MainView.DispatcherQueue.EnqueueAsync(() => item.UpdatePropertiesAsync());
+ _ = CoreApplication.MainView.DispatcherQueue.EnqueueAsync(() => item.UpdatePropertiesAsync());
149
150
return item;
151
}
0 commit comments