We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 968d8ee commit 8ea304bCopy full SHA for 8ea304b
src/Files.App/Services/Windows/WindowsRecentItemsService.cs
@@ -136,13 +136,13 @@ public unsafe bool Remove(RecentItem item)
136
cmi.lpVerb = new(pVerb1);
137
hr = pContextMenu.Get()->InvokeCommand(cmi);
138
if (hr == HRESULT.S_OK)
139
- return;
+ return true;
140
141
// Try unpin folders
142
cmi.lpVerb = new(pVerb2);
143
144
145
146
147
// NOTE:
148
// There seems to be an issue with unpinfromhome where some shell folders
@@ -151,7 +151,7 @@ public unsafe bool Remove(RecentItem item)
151
cmi.lpVerb = new(pVerb3);
152
153
154
155
}
156
157
return true;
0 commit comments