Skip to content

Commit 95fe1e0

Browse files
committed
VS ain't telling me build errors
1 parent 20e2603 commit 95fe1e0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Files/Helpers/UIFilesystemHelpers.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
using System.Collections.Generic;
1111
using Windows.ApplicationModel.AppService;
1212
using Windows.Foundation.Collections;
13+
using System.Linq;
1314

1415
namespace Files.Helpers
1516
{
@@ -63,8 +64,8 @@ public static async void CutItem(IShellPage associatedInstance)
6364
// Try again with fulltrust process
6465
if (associatedInstance.ServiceConnection != null)
6566
{
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()
6869
{
6970
{ "Arguments", "FileOperation" },
7071
{ "fileop", "Clipboard" },

0 commit comments

Comments
 (0)