Skip to content

Commit

Permalink
Merge pull request microsoft#100 from chuckries/master
Browse files Browse the repository at this point in the history
Fix url generation for iOS GetAppRemotePath
  • Loading branch information
chuckries committed Oct 19, 2015
2 parents 4041c32 + 8b37ea6 commit 8c7eb1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IOSDebugLauncher/VcRemoteClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public Launcher.RemotePorts StartDebugListener()
public string GetRemoteAppPath()
{
string appPath = string.Empty;
var response = CallVcRemote(new Uri("debug/appRemotePath?package" + _launchOptions.PackageId + "&deviceUdid=" + _launchOptions.DeviceUdid, UriKind.Relative), LauncherResources.Info_GettingInfo, out appPath);
var response = CallVcRemote(new Uri("debug/appRemotePath?package=" + _launchOptions.PackageId + "&deviceUdid=" + _launchOptions.DeviceUdid, UriKind.Relative), LauncherResources.Info_GettingInfo, out appPath);

if (string.IsNullOrWhiteSpace(appPath))
{
Expand Down

0 comments on commit 8c7eb1f

Please sign in to comment.