aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/thread_mute.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pleroma/thread_mute.ex')
-rw-r--r--lib/pleroma/thread_mute.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/thread_mute.ex b/lib/pleroma/thread_mute.ex
index cc815430a..f657758aa 100644
--- a/lib/pleroma/thread_mute.ex
+++ b/lib/pleroma/thread_mute.ex
@@ -24,10 +24,10 @@ defmodule Pleroma.ThreadMute do
end
def query(user_id, context) do
- {:ok, user_id} = FlakeId.Ecto.CompatType.dump(user_id)
+ user_binary_id = User.binary_id(user_id)
ThreadMute
- |> Ecto.Query.where(user_id: ^user_id)
+ |> Ecto.Query.where(user_id: ^user_binary_id)
|> Ecto.Query.where(context: ^context)
end