Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Contents/Libraries/Shared/subliminal_patch/refiners/drone.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def __init__(self, version=1, session=None, headers=None, timeout=10, base_url=N
if not base_url.startswith("http"):
base_url = "http://%s" % base_url

if not base_url.endswith("api/"):
self.api_url = urljoin(base_url, "api/")
if not base_url.endswith("api/v3/"):
self.api_url = urljoin(base_url, "api/v3/")

def get_guess(self, video, scene_name):
raise NotImplemented
Expand Down