Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
LesFerch authored Oct 31, 2024
1 parent 1b79e51 commit 36bb2cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ static void Main(string[] args)
Verb = "open"
});

string publicPath = Environment.GetEnvironmentVariable("PUBLIC").Replace("\\","/");
string publicPath = Environment.GetEnvironmentVariable("PUBLIC").Replace("\\", "/");

ShellWindows shellWindows = new ShellWindows();

Expand All @@ -80,7 +80,7 @@ static void Main(string[] args)
Thread.Sleep(80);
foreach (InternetExplorer window in shellWindows)
{
if (window.Name == "File Explorer" && window.LocationURL == $"file:///{publicPath}")
if (window.LocationURL == $"file:///{publicPath}")
{
window.Navigate(Folder);
windowFound = true;
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.1.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]
[assembly: AssemblyVersion("2.1.1.0")]
[assembly: AssemblyFileVersion("2.1.1.0")]

0 comments on commit 36bb2cd

Please sign in to comment.