fix premature return from askinfo (#463)
I believe this addresses issue #456 where if you add a protonmail account you get an error. This is caused by prematurely returning from the case statement that queries whether you have a protonmail account or not. Co-authored-by: rjl6789 <rlives6789@gmail.com>
This commit is contained in:
parent
cbf2f14d0d
commit
ca5c623855
2
bin/mw
2
bin/mw
@ -148,7 +148,7 @@ askinfo() { \
|
|||||||
search_query=$domain
|
search_query=$domain
|
||||||
case "$domain" in
|
case "$domain" in
|
||||||
protonmail.com|protonmail.ch|pm.me)
|
protonmail.com|protonmail.ch|pm.me)
|
||||||
search_query='protonmail.com' && return 1;;
|
search_query='protonmail.com' ;;
|
||||||
*)
|
*)
|
||||||
while : ; do
|
while : ; do
|
||||||
printf "\nIs your email hosted with Protonmail? [yes/no] "
|
printf "\nIs your email hosted with Protonmail? [yes/no] "
|
||||||
|
Loading…
Reference in New Issue
Block a user