We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10314ce commit fe2220fCopy full SHA for fe2220f
FactorioWebInterface/Services/FactorioUpdater.cs
@@ -17,7 +17,7 @@ namespace FactorioWebInterface.Services
17
public class FactorioUpdater
18
{
19
private static readonly Regex downloadRegex = new Regex(@"/download/archive/(\d+\.\d+\.\d+)", RegexOptions.Compiled);
20
- private static readonly Regex versionRegex = new Regex(@"factorio_headless_x64_(\d+\.\d+\.\d+)", RegexOptions.Compiled);
+ private static readonly Regex versionRegex = new Regex(@"factorio.*?_(\d+\.\d+\.\d+)", RegexOptions.Compiled);
21
22
private readonly SemaphoreSlim downloadLock = new SemaphoreSlim(1);
23
0 commit comments