From: ThibG Date: Sun, 7 Oct 2018 17:45:40 +0000 (+0200) Subject: Ensure only toots from the reported users are reported (#8916) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=25744d43b0c9ae58227e1e46ac9e2b33a7944925;p=mastodon.git Ensure only toots from the reported users are reported (#8916) --- diff --git a/app/controllers/api/v1/reports_controller.rb b/app/controllers/api/v1/reports_controller.rb index 9c6ee0a50..726817927 100644 --- a/app/controllers/api/v1/reports_controller.rb +++ b/app/controllers/api/v1/reports_controller.rb @@ -22,7 +22,7 @@ class Api::V1::ReportsController < Api::BaseController private def reported_status_ids - Status.find(status_ids).pluck(:id) + reported_account.statuses.find(status_ids).pluck(:id) end def status_ids