summaryrefslogtreecommitdiff
path: root/src/startup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/startup.cpp')
-rw-r--r--src/startup.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/startup.cpp b/src/startup.cpp
index 50b8744..8438cb9 100644
--- a/src/startup.cpp
+++ b/src/startup.cpp
@@ -56,7 +56,7 @@ std::optional<uint32_t> GetBuildNumberFromJSURL(const Glib::ustring &url, const
auto res = req.execute();
if (res.error) return {};
- auto regex = Glib::Regex::create(R"(buildNumber",\(.="(\d+))");
+ auto regex = Glib::Regex::create(R"(buildNumber","(\d+))");
Glib::MatchInfo match;
Glib::ustring string = res.text;
if (regex->match(string, match)) {