Skip to content

Commit 29c3a41

Browse files
committed
update api route to
1 parent ffc6e77 commit 29c3a41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

getwvkeys/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ class Moved(HTTPException):
639639
# routes that are removed
640640
@app.route("/pssh")
641641
def pssh():
642-
raise Moved("This route is no longer available, please use /pywidevine instead")
642+
raise Moved("This route is no longer available, please use /api instead")
643643

644644

645645
# routes that have been moved

getwvkeys/scripts/getwvkeys.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __init__(
6767
self.buildinfo = buildinfo
6868

6969
self.baseurl = "https://getwvkeys.cc" if API_URL == "__getwvkeys_api_url__" else API_URL
70-
self.api_url = self.baseurl + "/pywidevine"
70+
self.api_url = self.baseurl + "/api"
7171
self.headers = _headers
7272

7373
def generate_request(self):

0 commit comments

Comments
 (0)