diff options
author | Asa Venton <asav1410@gmail.com> | 2022-05-17 19:11:00 +0100 |
---|---|---|
committer | Asa Venton <asav1410@gmail.com> | 2022-05-17 19:11:00 +0100 |
commit | bdb531f061755eb2490fff342afca52831f59efd (patch) | |
tree | a6e45fef291bbe59f53d4115ab45b1a8a3603b33 | |
parent | 5e0c5485ff3a6168a60837adbcd8d0613375ed1e (diff) |
Remove exceeded usage dialogue from failed authentication message. API now responds with a real response for exceeded usage.HEADmaster
-rwxr-xr-x | oedquery.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oedquery.sh b/oedquery.sh index 0c2a2ab..d8865bf 100755 --- a/oedquery.sh +++ b/oedquery.sh @@ -22,7 +22,7 @@ _curl() { exit elif [[ "$result" == "Authentication failed" ]] then - echo "Authentication failed, probably exceeded monthly usage." + echo "Authentication failed. Tell $maintainer to fix." exit 0 fi if [[ "$result" == "Usage limit exceeded. Please, review your plan and minute rate limits." ]] |