Merge pull request #21 from unixfox/patch-1

fix instance health fetching
This commit is contained in:
Perflyst 2021-03-02 16:15:32 +01:00 committed by GitHub
commit 2845a0e7ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ spawn do
monitors += response["psp"]["monitors"].as_a
page += 1
break if response["psp"]["perPage"].as_i * page > response["psp"]["totalMonitors"].as_i
break if response["psp"]["perPage"].as_i * (page - 1) + 1 > response["psp"]["totalMonitors"].as_i
rescue ex
error_message = response.try &.as?(String).try &.["errorStats"]?
error_message ||= ex.message