dylantheriot / valorant-match-history

See your VALORANT match history with LP (VP??) gains
43 stars 25 forks source link

Fix "Error parsing match history data" #21

Closed BennyExtreme closed 3 years ago

BennyExtreme commented 3 years ago

It seems that Riot Games has again modified their APIs.

In this pull request I included the following things:

Looking forward to your reply, best regards.

grasshide commented 3 years ago

Thank you @BennyExtreme for the update and going the extra mile to create the pull request. I can confirm that it works :-) Since Docker requires the flask server to be serving to everybody, I had to adjust the Dockerfile: RUN sed -i 's/host="127.0.0.1", port=5000, debug=True/host="0.0.0.0", port=5000, debug=False/g' wsgi.py

BennyExtreme commented 3 years ago

Thank you @BennyExtreme for the update and going the extra mile to create the pull request. I can confirm that it works :-) Since Docker requires the flask server to be serving to everybody, I had to adjust the Dockerfile: RUN sed -i 's/host="127.0.0.1", port=5000, debug=True/host="0.0.0.0", port=5000, debug=False/g' wsgi.py

Thank you @grasshide for trying my fix and for giving me a feedback, I added a commit to the PR to fix the problem you reported. Best regards.