about summary refs log tree commit diff
path: root/app/lib/webfinger.rb
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-11-19 18:51:41 +0100
committerClaire <claire.github-309c@sitedethib.com>2021-11-19 18:51:41 +0100
commit2b4c7beb733b809e8c9bec7492254ccf09d830b1 (patch)
tree200fc89e67e2c51493a87c4b8745d9d0180699f9 /app/lib/webfinger.rb
parentf2b376e9d82577dc630757a2b927d02f8bfcf4b0 (diff)
parentdb32835338e113f23a474d323e398916a999619f (diff)
Merge branch 'main' into glitch-soc/merge-upstream
Diffstat (limited to 'app/lib/webfinger.rb')
-rw-r--r--app/lib/webfinger.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/lib/webfinger.rb b/app/lib/webfinger.rb
index e0e022cea..1ffb5b4bf 100644
--- a/app/lib/webfinger.rb
+++ b/app/lib/webfinger.rb
@@ -46,7 +46,9 @@ class Webfinger
   def body_from_webfinger(url = standard_url, use_fallback = true)
     webfinger_request(url).perform do |res|
       if res.code == 200
-        res.body_with_limit
+        body = res.body_with_limit
+        raise Webfinger::Error, "Request for #{@uri} returned empty response" if body.empty?
+        body
       elsif res.code == 404 && use_fallback
         body_from_host_meta
       elsif res.code == 410