From 390fc4c114d728975c39d3016c672ba9c05210f5 Mon Sep 17 00:00:00 2001 From: stormdragon2976 Date: Wed, 29 Mar 2023 18:22:36 -0400 Subject: [PATCH] Fixed a bug in the run dialog. --- scripts/run_dialog.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_dialog.sh b/scripts/run_dialog.sh index e89e8a9..d949ac3 100755 --- a/scripts/run_dialog.sh +++ b/scripts/run_dialog.sh @@ -21,7 +21,7 @@ fi if [[ -z "$txt" ]]; then exit 0 fi -if [[ "$txt" =~ ^ftp://|http://|https://|www.* ]]; then +if [[ "$txt" =~ ^ftp://|^http://|^https://|^www.* ]]; then xdg-open $txt write_history exit 0