File tree 1 file changed +3
-2
lines changed 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 10
10
using System . Collections . Generic ;
11
11
using Windows . ApplicationModel . AppService ;
12
12
using Windows . Foundation . Collections ;
13
+ using System . Linq ;
13
14
14
15
namespace Files . Helpers
15
16
{
@@ -63,8 +64,8 @@ public static async void CutItem(IShellPage associatedInstance)
63
64
// Try again with fulltrust process
64
65
if ( associatedInstance . ServiceConnection != null )
65
66
{
66
- string filePaths = string . Join ( '|' , SlimContentPage . SelectedItems . Select ( x => x . ItemPath ) ) ;
67
- AppServiceResponseStatus status = await ServiceConnection . SendMessageAsync ( new ValueSet ( )
67
+ string filePaths = string . Join ( '|' , associatedInstance . SlimContentPage . SelectedItems . Select ( x => x . ItemPath ) ) ;
68
+ AppServiceResponseStatus status = await associatedInstance . ServiceConnection . SendMessageAsync ( new ValueSet ( )
68
69
{
69
70
{ "Arguments" , "FileOperation" } ,
70
71
{ "fileop" , "Clipboard" } ,
You can’t perform that action at this time.
0 commit comments