diff options
Diffstat (limited to 'src/controller.cpp')
-rw-r--r-- | src/controller.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/controller.cpp b/src/controller.cpp index a712a776..40db06c5 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -1317,18 +1317,10 @@ void controller::edit_urls_file() { v->push_empty_formaction(); stfl::reset(); - int editor_exit_code = utils::run_interactively(cmdline, "controller::edit_urls_file"); - if (editor_exit_code != 0) { - LOG(level::DEBUG, "utils::run_interactively: " - "The editor failed with error code %d - command was %s", editor_exit_code, cmdline); - } + utils::run_interactively(cmdline, "controller::edit_urls_file"); v->pop_current_formaction(); - if (editor_exit_code != 0) { - v->show_error(_("Editor failed to open url file!")); - } - reload_urls_file(); } |