Skip to content

Commit 9ad69f9

Browse files
authored
Fix: Fixed COMException in SidebarItem.ItemGrid_Drop (#15942)
1 parent 20e5e5c commit 9ad69f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Files.App/Utils/Storage/Operations/FilesystemHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public async Task<ReturnResult> PerformOperationTypeAsync(
257257
if (isTargetExecutable || isTargetScriptFile)
258258
{
259259
var items = await GetDraggedStorageItems(packageView);
260-
NavigationHelpers.OpenItemsWithExecutableAsync(associatedInstance, items, destination);
260+
await NavigationHelpers.OpenItemsWithExecutableAsync(associatedInstance, items, destination);
261261
return ReturnResult.Success;
262262
}
263263
else

0 commit comments

Comments
 (0)