Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion umalauncher/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ def do_error_request(url, json):
if util.is_script:
version_str += ".script"
version_str += " (" + util.get_game_variant_string() + ")"
thread = threading.Thread(target=do_error_request, args = ( "https://umalauncher.uc.r.appspot.com/api/v1/umalauncher/error", {"traceback": traceback_str, "user_id": user_id, "version": version_str} ) )
thread = threading.Thread(target=do_error_request, args = ( "https://umalauncher.uc.r.appspot.com/api/v2/umalauncher/error", {"traceback": traceback_str, "user_id": user_id, "version": version_str} ) )
thread.start()


Expand Down
2 changes: 1 addition & 1 deletion umalauncher/horsium.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def wrapper(self, *args, **kwargs):
return wrapper

def get_browser_pid(self):
if 'moz:processID' in self.driver.capabilities:
if self.driver is not None and 'moz:processID' in self.driver.capabilities:
return self.driver.capabilities['moz:processID']
else:
browsers = ['chrome.exe', 'msedge.exe', 'chromium.exe']
Expand Down