Browse Source

Moving the queue_at into the worker

closed-social-glitch-2
Kurtis Rainbolt-Greene 7 years ago
committed by GitHub
parent
commit
0069c01285
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/workers/push_update_worker.rb

+ 1
- 1
app/workers/push_update_worker.rb View File

@ -7,7 +7,7 @@ class PushUpdateWorker
account = Account.find(account_id)
status = Status.find(status_id)
message = inline_render(account, 'api/v1/statuses/show', status)
queue_at = (Time.now.to_f * 1000.0).to_i
ActionCable.server.broadcast("timeline:#{account_id}", type: 'update', timeline: timeline, message: message)
end
end

Loading…
Cancel
Save