mirror of
https://github.com/thorsten-gehrig/alexa-remote-control.git
synced 2024-11-14 12:59:02 +01:00
Merge pull request #3 from michael1/master
Added error handling for failed logins
This commit is contained in:
commit
47668ff338
@ -612,19 +612,28 @@ if [ -z "$BLUETOOTH" -a -z "$LEMUR" -a -z "$PLIST" -a -z "$HIST" -a -z "$SEEDID"
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f ${COOKIE} ] ; then
|
if [ ! -f ${COOKIE} ] ; then
|
||||||
echo "cookie do not exist. logging in ..."
|
echo "cookie does not exist. logging in ..."
|
||||||
log_in
|
log_in
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f ${DEVLIST} ] ; then
|
|
||||||
echo "device list do not exist. downloading ..."
|
|
||||||
get_devlist
|
|
||||||
fi
|
|
||||||
|
|
||||||
check_status
|
check_status
|
||||||
if [ $? -eq 0 ] ; then
|
if [ $? -eq 0 ] ; then
|
||||||
echo "cookie expired, logging in again ..."
|
echo "cookie expired, logging in again ..."
|
||||||
log_in
|
log_in
|
||||||
|
check_status
|
||||||
|
if [ $? -eq 0 ] ; then
|
||||||
|
echo "log in failed, aborting"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f ${DEVLIST} ] ; then
|
||||||
|
echo "device list do not exist. downloading ..."
|
||||||
|
get_devlist
|
||||||
|
if [ ! -f ${DEVLIST} ] ; then
|
||||||
|
echo "failed to download device list, aborting"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "$COMMAND" -o -n "$QUEUE" ] ; then
|
if [ -n "$COMMAND" -o -n "$QUEUE" ] ; then
|
||||||
|
Loading…
Reference in New Issue
Block a user