Fix remote poll expiration time (#10144)
This commit is contained in:
parent
f821eca3b3
commit
ae1b9cf70a
2 changed files with 2 additions and 2 deletions
|
@ -216,7 +216,7 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
|
|||
expires_at = begin
|
||||
if @object['closed'].is_a?(String)
|
||||
@object['closed']
|
||||
elsif !@object['closed'].is_a?(FalseClass)
|
||||
elsif !@object['closed'].nil? && !@object['closed'].is_a?(FalseClass)
|
||||
Time.now.utc
|
||||
else
|
||||
@object['endTime']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue