Skip to content
Snippets Groups Projects
Commit dfa65e9e authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Fix open-link action

param is a string array
parent 8f299caa
No related branches found
No related tags found
No related merge requests found
......@@ -356,7 +356,7 @@ def open_mail(_action, param):
def open_link(_action, param):
account, uri = param.get_string()
account, uri = param.get_strv()
helpers.open_uri(uri, account=account)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment