diff options
author | tusooa <tusooa@kazv.moe> | 2023-02-03 15:38:08 -0500 |
---|---|---|
committer | tusooa <tusooa@kazv.moe> | 2023-02-03 16:00:39 -0500 |
commit | 08132002d2938ae15cd2d0f879ef10275a0013bd (patch) | |
tree | 525e4d8dfee34c5498cf9d9911ddb895f748d1b4 /lib | |
parent | 2a244b391d8c1d9d8e960532758110928cb5ef7c (diff) | |
download | pleroma-08132002d2938ae15cd2d0f879ef10275a0013bd.tar.gz pleroma-08132002d2938ae15cd2d0f879ef10275a0013bd.zip |
Fix inproper content being cached in report content
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/admin_api/report.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/admin_api/report.ex b/lib/pleroma/web/admin_api/report.ex index c79bee27e..fa89e3405 100644 --- a/lib/pleroma/web/admin_api/report.ex +++ b/lib/pleroma/web/admin_api/report.ex @@ -31,7 +31,7 @@ defmodule Pleroma.Web.AdminAPI.Report do defp make_fake_activity(act, user) do %Activity{ - id: "pleroma:fake", + id: "pleroma:fake:#{act["id"]}", data: %{ "actor" => user.ap_id, "type" => "Create", |