Skip to content

Commit

Permalink
fix Using http protocol is insecure. Use https instead.
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegoO committed Jan 17, 2025
1 parent 30cf880 commit 85f10fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VirtoCommerce.CatalogCsvImportModule.Core/UrlHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public static string ExtractFileNameFromUrl(string url)
{
if (!uri.IsAbsoluteUri)
{
uri = new Uri(new Uri("http://dummy-base/"), url);
uri = new Uri(new Uri("https://dummy-base/"), url);
}

// Get the file name from the path
Expand Down

0 comments on commit 85f10fc

Please sign in to comment.