summaryrefslogtreecommitdiff
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.ex8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/pleroma/thread_mute.ex b/lib/pleroma/thread_mute.ex
index a7ea13891..be01d541d 100644
--- a/lib/pleroma/thread_mute.ex
+++ b/lib/pleroma/thread_mute.ex
@@ -25,10 +25,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
- |> where(user_id: ^user_id)
+ |> where(user_id: ^user_binary_id)
|> where(context: ^context)
end
@@ -68,8 +68,8 @@ defmodule Pleroma.ThreadMute do
|> Repo.delete_all()
end
- def check_muted(user_id, context) do
+ def exists?(user_id, context) do
query(user_id, context)
- |> Repo.all()
+ |> Repo.exists?()
end
end