Set return status of is_clear() to booleans

This commit is contained in:
Trey Blancher 2023-08-12 16:19:01 -04:00
parent 53a4f7f73c
commit 345de155fa
1 changed files with 2 additions and 2 deletions

View File

@ -167,9 +167,9 @@ is_clear () {
if [[ ${avg10} -lt ${clear_threshold} ]]; then
return 0
true
else
return 1
false
fi
}