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

master
Eugen Rochko 5 years ago committed by GitHub
parent 878a75ba21
commit e6900b167b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/services/activitypub/fetch_remote_poll_service.rb

@ -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']

Loading…
Cancel
Save