Skip to content
Merged
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
6 changes: 3 additions & 3 deletions src/Utility/TeeJee.System.vala
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ namespace TeeJee.System{
if (xdg_open_try_first && xdgAvailable){
//try using xdg-open
string cmd = "xdg-open '%s'".printf(escaped_dir_path);
status = exec_script_async (cmd);
status = TeeJee.ProcessHelper.exec_user_async(cmd);
return (status == 0);
}

Expand All @@ -126,7 +126,7 @@ namespace TeeJee.System{
}

string cmd = "%s '%s'".printf(app_name, escaped_dir_path);
status = exec_script_async (cmd);
status = TeeJee.ProcessHelper.exec_user_async(cmd);

if(status == 0) {
return true;
Expand All @@ -136,7 +136,7 @@ namespace TeeJee.System{
if (!xdg_open_try_first && xdgAvailable){
//try using xdg-open
string cmd = "xdg-open '%s'".printf(escaped_dir_path);
status = exec_script_async (cmd);
status = TeeJee.ProcessHelper.exec_user_async(cmd);
return (status == 0);
}

Expand Down
Loading