Fix another typo in ActivityPub::FetchRemotePollService (#10146)

This commit is contained in:
Eugen Rochko
2019-03-04 00:52:18 +01:00
committed by GitHub
parent 878a75ba21
commit e6900b167b

View File

@ -11,7 +11,7 @@ class ActivityPub::FetchRemotePollService < BaseService
expires_at = begin
if @json['closed'].is_a?(String)
@json['closed']
elsif !@json['closed'].nil? && !@object['closed'].is_a?(FalseClass)
elsif !@json['closed'].nil? && !@json['closed'].is_a?(FalseClass)
Time.now.utc
else
@json['endTime']