summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gleason <alex@alexgleason.me>2021-12-24 11:39:03 -0600
committerAlex Gleason <alex@alexgleason.me>2021-12-24 11:39:03 -0600
commit26a08ef54d1b5c9d58b3377964ff6dd25ffd880e (patch)
tree0b67663b1ecaf5c0e4d79d358db97c71cfa8cb29
parent91902c87dea55a87c44dd7ea7923201f66c56848 (diff)
mix formatobject-flake
-rw-r--r--lib/pleroma/migrators/hashtags_table_migrator.ex4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/pleroma/migrators/hashtags_table_migrator.ex b/lib/pleroma/migrators/hashtags_table_migrator.ex
index e40399732..31a5a44c7 100644
--- a/lib/pleroma/migrators/hashtags_table_migrator.ex
+++ b/lib/pleroma/migrators/hashtags_table_migrator.ex
@@ -171,9 +171,7 @@ defmodule Pleroma.Migrators.HashtagsTableMigrator do
defp failed_objects_query do
from(o in Object)
- |> join(:inner, [o], dmf in DataMigrationFailedId,
- on: dmf.record_id == o.id
- )
+ |> join(:inner, [o], dmf in DataMigrationFailedId, on: dmf.record_id == o.id)
|> where([_o, dmf], dmf.data_migration_id == ^data_migration_id())
|> order_by([o], asc: o.id)
end