Skip to content

Commit

Permalink
Fix closing selenium webdriver
Browse files Browse the repository at this point in the history
  • Loading branch information
josdemmers committed Feb 17, 2024
1 parent 20d1d81 commit 55330b2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions D4Companion.Services/BuildsManagerD4Builds.cs
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,9 @@ public void DownloadD4BuildsBuild(string buildIdD4Builds)
catch(Exception ex)
{
_logger.LogError(ex, MethodBase.GetCurrentMethod()?.Name);
}
finally
{
_webDriver?.Quit();
}
}
Expand Down

0 comments on commit 55330b2

Please sign in to comment.