We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
Since version v11.13.0 the following regex no longer matches results
buildingCountdownMatch := regexp.MustCompile(`var restTimebuilding = (\d+) -`).FindSubmatch(pageHTML) ... researchCountdownMatch := regexp.MustCompile(`var restTimeresearch = (\d+) -`).FindSubmatch(pageHTML) ... lfBuildingCountdownMatch := regexp.MustCompile(`var restTimelfbuilding = (\d+) -`).FindSubmatch(pageHTML) ... lfResearchCountdownMatch := regexp.MustCompile(`var restTimelfresearch = (\d+) -`).FindSubmatch(pageHTML) ...
I think they changed how it works with the new Mechas building queue
Thanks !
The text was updated successfully, but these errors were encountered:
You can get the new regexp here https://github.com/0xE232FE/ogame.mod/blob/9ed75aaf095ae7e3c7d31621531a3c6801dcadfd/pkg/extractor/v11_9_0/extracts.go#L195
Example
buildingCountdownMatch := regexp.MustCompile(`new CountdownTimer\('buildingCountdown', (\d+),`).FindSubmatch(pageHTML)```
Sorry, something went wrong.
should be fixed in 52.1.0
No branches or pull requests
Hi!
Since version v11.13.0 the following regex no longer matches results
I think they changed how it works with the new Mechas building queue
Thanks !
The text was updated successfully, but these errors were encountered: