Merge branch 'feature/jsonld-context-cleanup' into 'develop'
[akkoma] / lib / pleroma / list.ex
index a99e3245b9fedc90eca575bad87d21df93a5ba9e..891c73f5a7ede5a8dc521cc5846c33998bba6ea0 100644 (file)
@@ -72,11 +72,19 @@ defmodule Pleroma.List do
   # Get lists to which the account belongs.
   def get_lists_account_belongs(%User{} = owner, account_id) do
     user = Repo.get(User, account_id)
+
     query =
       from(
         l in Pleroma.List,
-        where: l.user_id == ^owner.id and fragment("? = ANY(?)", ^user.follower_address, l.following)
+        where:
+          l.user_id == ^owner.id and
+            fragment(
+              "? = ANY(?)",
+              ^user.follower_address,
+              l.following
+            )
       )
+
     Repo.all(query)
   end