Browse Source

Fix incorrect URL used for browser launch (side-effect of previous change).

tags/0.6.0
ShyPike 15 years ago
parent
commit
0bd763833f
  1. 2
      SABnzbd.py

2
SABnzbd.py

@ -647,7 +647,7 @@ def check_for_sabnzbd(url, upload_nzbs):
upload_file(url, f)
else:
# Launch the web browser and quit since sabnzbd is already running
launch_a_browser(url, force=True)
launch_a_browser(url.replace('api?', ''), force=True)
exit_sab(0)
return True
return False

Loading…
Cancel
Save