Skip to content

Commit

Permalink
[dotnet] fix bug preventing installing addon from directory
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Oct 31, 2022
1 parent 64430ec commit 3bdde2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Firefox/FirefoxDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public string InstallAddOnFromDirectory(string addOnDirectoryToInstall, bool tem
string addOnFileToInstall = Path.Combine(Path.GetTempPath(), "addon" + new Random().Next() + ".zip");
ZipFile.CreateFromDirectory(addOnDirectoryToInstall, addOnFileToInstall);

return this.InstallAddOn(addOnFileToInstall, temporary);
return this.InstallAddOnFromFile(addOnFileToInstall, temporary);
}

/// <summary>
Expand Down

0 comments on commit 3bdde2a

Please sign in to comment.