logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: d40c9140e8c02c63b675d9c9a2a44ee20c5a9f31
parent: 632178d7543f48f493a63afce0d3c6243aac5fae
Author: Yamagishi Kazutoshi <ykzts@desire.sh>
Date:   Wed,  4 Oct 2017 16:51:42 +0900

Fix undefined local variable (regression from #5114) (#5210)


Diffstat:

Mapp/services/fetch_atom_service.rb2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/services/fetch_atom_service.rb b/app/services/fetch_atom_service.rb @@ -43,7 +43,7 @@ class FetchAtomService < BaseService if @response.mime_type == 'application/atom+xml' [@url, { prefetched_body: @response.to_s }, :ostatus] elsif ['application/activity+json', 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"'].include?(@response.mime_type) - json = body_to_json(body) + json = body_to_json(@response.to_s) if supported_context?(json) && json['type'] == 'Person' && json['inbox'].present? [json['id'], { id: true }, :activitypub] else