File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Files.App/Services/Windows Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -136,13 +136,13 @@ public unsafe bool Remove(RecentItem item)
136136 cmi . lpVerb = new ( pVerb1 ) ;
137137 hr = pContextMenu . Get ( ) ->InvokeCommand ( cmi ) ;
138138 if ( hr == HRESULT . S_OK )
139- return ;
139+ return true ;
140140
141141 // Try unpin folders
142142 cmi . lpVerb = new ( pVerb2 ) ;
143143 hr = pContextMenu . Get ( ) ->InvokeCommand ( cmi ) ;
144144 if ( hr == HRESULT . S_OK )
145- return ;
145+ return true ;
146146
147147 // NOTE:
148148 // There seems to be an issue with unpinfromhome where some shell folders
@@ -151,7 +151,7 @@ public unsafe bool Remove(RecentItem item)
151151 cmi . lpVerb = new ( pVerb3 ) ;
152152 hr = pContextMenu . Get ( ) ->InvokeCommand ( cmi ) ;
153153 if ( hr == HRESULT . S_OK )
154- return ;
154+ return true ;
155155 }
156156
157157 return true ;
You can’t perform that action at this time.
0 commit comments