fix verify check

master
Dominika Liberda 2020-10-30 00:09:21 +01:00
parent 38156aaaab
commit 68d37197b6
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ source code/common.sh
if [[ "${post_data[login]}" != '' && "${post_data[password]}" != '' ]]; then
login "${post_data[login]}" "${post_data[password]}"
status=$?
if ! account_verified "${post_data[login]}"; then
if account_verified "${post_data[login]}"; then
status=-2
reason="Account not verified"
fi