Change the account server to listen on port 8080

This makes more sense than listening on port 7070 because the account server is the most important.
This commit is contained in:
Matthew Lopez
2021-09-01 16:38:00 -04:00
committed by GitHub
parent c2d40776dd
commit c0821b546e

View File

@@ -25,7 +25,7 @@ class PretendoAddon:
# The account server
if "account.nintendo.net" in flow.request.host:
flow.request.host = flow.request.host.replace("nintendo.net", "pretendo.cc")
flow.request.port = 7070
flow.request.port = 8080
if ctx.options.pretendo_http:
flow.request.scheme = "http"