diff --git a/lib/webfinger.rb b/lib/webfinger.rb
index ab86614fada867720b947c291bf59b88ee4d8a8f..e1312f9334b657c4eba78b9a9332b5ea38e12bc0 100644
--- a/lib/webfinger.rb
+++ b/lib/webfinger.rb
@@ -83,9 +83,9 @@ class Webfinger
   end
 
   def webfinger_profile_url
-    doc = Nokogiri::XML::Document.parse(self.host_meta_xrd)
+    doc = Nokogiri::XML(self.host_meta_xrd)
     return nil if doc.namespaces["xmlns"] != "http://docs.oasis-open.org/ns/xri/xrd-1.0"
-    swizzle doc.at('Link[rel=lrdd]').attribute('template').value
+    swizzle doc.search('Link').find{|x| x['rel']=='lrdd'}['template']
   end
 
   def webfinger_profile_xrd