Skip to content

Commit 3bdde2a

Browse files
committed
[dotnet] fix bug preventing installing addon from directory
1 parent 64430ec commit 3bdde2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/webdriver/Firefox/FirefoxDriver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ public string InstallAddOnFromDirectory(string addOnDirectoryToInstall, bool tem
277277
string addOnFileToInstall = Path.Combine(Path.GetTempPath(), "addon" + new Random().Next() + ".zip");
278278
ZipFile.CreateFromDirectory(addOnDirectoryToInstall, addOnFileToInstall);
279279

280-
return this.InstallAddOn(addOnFileToInstall, temporary);
280+
return this.InstallAddOnFromFile(addOnFileToInstall, temporary);
281281
}
282282

283283
/// <summary>

0 commit comments

Comments
 (0)