Fixed bug (#40)

Bug that wouldn't allow for more than one space in qrify
This commit is contained in:
Linyos Torovoltos 2017-07-05 15:48:24 -04:00 committed by Alex Epstein
parent bc83294d14
commit dda79ca840
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ httpGet()
makeqr()
{
input=$(echo $input | sed s/" "/%20/ )
input=$(echo $input | sed s/" "/%20/g )
httpGet qrenco.de/$input
}