From 751d31a4ada004b3d26666ad9385e386b5186187 Mon Sep 17 00:00:00 2001 From: "Prerna Atwal (patwal)" Date: Thu, 14 Nov 2024 00:17:47 -0800 Subject: [PATCH] Bug 468532: Code changes to fix the url to make it work with latest chrome. Added // back to the url --- src/ScalusConfiguration.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ScalusConfiguration.cs b/src/ScalusConfiguration.cs index b9f6cf4..2baaa80 100644 --- a/src/ScalusConfiguration.cs +++ b/src/ScalusConfiguration.cs @@ -39,6 +39,7 @@ public ScalusConfiguration(IProtocolHandlerFactory protocolHandlerFactory) public IProtocolHandler GetProtocolHandler(string uri) { Serilog.Log.Information($"Checking configuration for url:{uri}"); + uri = uri.Replace("rdp:", "rdp://"); // var manually parse out the protocol var index = uri.IndexOf("://"); var protocol = string.Empty;