diff --git a/sb.py b/sb.py index 2f7549c..9e59512 100644 --- a/sb.py +++ b/sb.py @@ -28,6 +28,8 @@ def get_sb_url(sb_url): if sb_url.startswith('https://'): return sb_url + if sb_url.startswith('http://'): + return sb_url return f'https://{sb_url}' sb_url = get_sb_url(os.getenv('SB_URL'))