@@ -37,7 +37,7 @@ public class BrowserFetcher
3737 /// <summary>
3838 /// Default Chromium revision.
3939 /// </summary>
40- public const int DefaultRevision = 641577 ;
40+ public const int DefaultRevision = 650583 ;
4141
4242 /// <summary>
4343 /// Gets the downloads folder.
@@ -85,7 +85,7 @@ public BrowserFetcher(BrowserFetcherOptions options)
8585 Platform = options . Platform ?? GetCurrentPlatform ( ) ;
8686 }
8787
88- #region Public Methods
88+ #region Public Methods
8989
9090 /// <summary>
9191 /// The method initiates a HEAD request to check if the revision is available.
@@ -240,9 +240,9 @@ public static string GetExecutablePath(Platform platform, int revision, string f
240240 }
241241 }
242242
243- #endregion
243+ #endregion
244244
245- #region Private Methods
245+ #region Private Methods
246246
247247 internal static Platform GetCurrentPlatform ( )
248248 {
@@ -267,7 +267,7 @@ private string GetFolderPath(int revision)
267267 private void NativeExtractToDirectory ( string zipPath , string folderPath )
268268 {
269269 var process = new Process ( ) ;
270-
270+
271271 process . StartInfo . FileName = "unzip" ;
272272 process . StartInfo . Arguments = $ "\" { zipPath } \" -d \" { folderPath } \" ";
273273 process . Start ( ) ;
@@ -312,6 +312,6 @@ private static string GetArchiveName(Platform platform, int revision)
312312 private static string GetDownloadURL ( Platform platform , string host , int revision )
313313 => string . Format ( _downloadUrls [ platform ] , host , revision , GetArchiveName ( platform , revision ) ) ;
314314
315- #endregion
315+ #endregion
316316 }
317317}
0 commit comments