Possibly fix issue with stale favourite/reblog information after API call
This commit is contained in:
		
							parent
							
								
									35dfc0fbcb
								
							
						
					
					
						commit
						b5ebf99439
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -12,12 +12,12 @@ class Api::StatusesController < ApiController | |||
|   end | ||||
| 
 | ||||
|   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 | ||||
|   end | ||||
| 
 | ||||
|   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 | ||||
|   end | ||||
| 
 | ||||
|  |  | |||
		Reference in a new issue