Skip to content

Commit

Permalink
Fix AddEncodedExtension methods of ChromeOptions and OperaOptions
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Evans <james.h.evans.jr@gmail.com>
  • Loading branch information
YevgeniyShunevych authored and jimevans committed Mar 12, 2018
1 parent d37967a commit afa8734
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Chrome/ChromeOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ public void AddEncodedExtension(string extension)
throw new ArgumentException("extension must not be null or empty", "extension");
}

this.AddExtensions(extension);
this.AddEncodedExtensions(extension);
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Opera/OperaOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ public void AddEncodedExtension(string extension)
throw new ArgumentException("extension must not be null or empty", "extension");
}

this.AddExtensions(extension);
this.AddEncodedExtensions(extension);
}

/// <summary>
Expand Down

0 comments on commit afa8734

Please sign in to comment.