Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/placeos-rest-api/controllers/webrtc.cr
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,11 @@ module PlaceOS::Api
else
raise Error::RecaptchaFailed.new("error verifying recaptcha response")
end
rescue error : Error::RecaptchaFailed
raise error
rescue error
# We don't want chat to be out of action if google is down, so we'll continue
Log.error(exception: error) { "recaptcha failed" }
Log.error(exception: error) { "recaptcha verification failed" }
end
end
else
Expand Down
Loading