fix: shellcheck for modules.d/45url-lib/url-lib.sh

master
Harald Hoyer 2021-02-12 13:26:11 +01:00 committed by Harald Hoyer
parent 10f3b19606
commit cdf03476d1
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ add_url_handler() {
[ "$(get_url_handler $scheme)" = "$handler" ] && continue
set -- "$@" "$scheme:$handler"
done
set -- $@ $url_handler_map # add new items to *front* of list
set -- "$@" $url_handler_map # add new items to *front* of list
url_handler_map="$@"
}