aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/pleroma/migrators/hashtags_table_migrator.ex14
1 files changed, 10 insertions, 4 deletions
diff --git a/lib/pleroma/migrators/hashtags_table_migrator.ex b/lib/pleroma/migrators/hashtags_table_migrator.ex
index b40578d50..47de5e134 100644
--- a/lib/pleroma/migrators/hashtags_table_migrator.ex
+++ b/lib/pleroma/migrators/hashtags_table_migrator.ex
@@ -196,11 +196,17 @@ defmodule Pleroma.Migrators.HashtagsTableMigrator do
defp handle_success(data_migration) do
update_status(:complete)
- unless data_migration.feature_lock || Config.improved_hashtag_timeline() do
- Config.put(Config.improved_hashtag_timeline_path(), true)
- end
+ cond do
+ data_migration.feature_lock ->
+ :noop
+
+ not is_nil(Config.improved_hashtag_timeline()) ->
+ :noop
- :ok
+ true ->
+ Config.put(Config.improved_hashtag_timeline_path(), true)
+ :ok
+ end
end
def failed_objects_query do