Skip to content

Commit b22d943

Browse files
committed
refactor(chalice): changes
1 parent 8de6d83 commit b22d943

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ee/api/chalicelib/core/unlock.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def check():
2424
environ["numberOfSeats"] = "0"
2525
return
2626
print(f"validating: {helper.obfuscate(license)}")
27-
r = requests.post('https://api.openreplay.com/os/license', json={"mid": __get_mid(), "license": get_license()})
27+
r = requests.post('https://api.openreplay.com/license/validate', json={"mid": __get_mid(), "license": get_license()})
2828
if r.status_code != 200 or "errors" in r.json() or not r.json()["data"].get("valid"):
2929
print("license validation failed")
3030
print(r.text)

0 commit comments

Comments
 (0)