Fixed a bug in the run dialog.

This commit is contained in:
stormdragon2976 2023-03-29 18:22:36 -04:00
parent 71cd45f781
commit 390fc4c114
1 changed files with 1 additions and 1 deletions

View File

@ -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