diff --git a/qb b/qb index 6884f52..5365397 100755 --- a/qb +++ b/qb @@ -337,14 +337,14 @@ Try to manage ${RED}$(cat "${choice_temp_file}")${COLOR_DEBUG}." case "${local_content}" in bb*http* ) ## Classic bookmark - url=$(printf "%s" "${local_content}" | sed -e "s;bb \(http.*\) .*;\1;") + url=$(printf "%s" "${local_content}" | cut -d" " -f2) return_get_url="0" debug_message "get_url − \ URL from classic bookmark ${RED}${url}${COLOR_DEBUG}." goto_url ;; qq*http* ) ## Quickmark - url=$(printf "%s" "${local_content}" | sed -e "s;qq .*\(http.*\);\1;") + url=$(printf "%s" "${local_content}" | cut -d" " -f3) return_get_url="0" debug_message "get_url − \ URL from quickmark ${RED}${url}${COLOR_DEBUG}."