Merge branch 'fix/attachments-cleanup' into 'develop'
[akkoma] / lib / pleroma / application.ex
index f47cb0ce97e4f495c2300b74712e640b65f24823..e1706887671fab475c6cd8517e05071c9091cc37 100644 (file)
@@ -31,7 +31,9 @@ defmodule Pleroma.Application do
   # See http://elixir-lang.org/docs/stable/elixir/Application.html
   # for more information on OTP Applications
   def start(_type, _args) do
+    Pleroma.HTML.compile_scrubbers()
     Pleroma.Config.DeprecationWarnings.warn()
+    Pleroma.Repo.check_migrations_applied!()
     setup_instrumenters()
     load_custom_modules()
 
@@ -171,8 +173,6 @@ defmodule Pleroma.Application do
 
   defp oauth_cleanup_child(_), do: []
 
-  defp chat_child(:test, _), do: []
-
   defp chat_child(_env, true) do
     [Pleroma.Web.ChatChannel.ChatChannelState]
   end