Skip to content
Snippets Groups Projects
Unverified Commit 878a75ba authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix typo in ActivityPub::FetchRemotePollService (#10145)

parent ae1b9cf7
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ class ActivityPub::FetchRemotePollService < BaseService
expires_at = begin
if @json['closed'].is_a?(String)
@json['closed']
elsif !@object['closed'].nil? && !@object['closed'].is_a?(FalseClass)
elsif !@json['closed'].nil? && !@object['closed'].is_a?(FalseClass)
Time.now.utc
else
@json['endTime']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment