Possibly fix issue with stale favourite/reblog information after API call

master
Eugen Rochko 8 years ago
parent 35dfc0fbcb
commit b5ebf99439
  1. 4
      app/controllers/api/statuses_controller.rb

@ -12,12 +12,12 @@ class Api::StatusesController < ApiController
end end
def reblog def reblog
@status = ReblogService.new.(current_user.account, Status.find(params[:id])) @status = ReblogService.new.(current_user.account, Status.find(params[:id])).reload
render action: :show render action: :show
end end
def favourite def favourite
@status = FavouriteService.new.(current_user.account, Status.find(params[:id])).status @status = FavouriteService.new.(current_user.account, Status.find(params[:id])).status.reload
render action: :show render action: :show
end end

Loading…
Cancel
Save