Merge branch 'features/mrf-reasons' into 'develop'
[akkoma] / lib / pleroma / application.ex
index b68a373a448c7d2c3f96f051bd1b4744e03eff98..3282c6882104c9e14fafe004fa0a675b34959ddd 100644 (file)
@@ -35,6 +35,10 @@ 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
+    # Scrubbers are compiled at runtime and therefore will cause a conflict
+    # every time the application is restarted, so we disable module
+    # conflicts at runtime
+    Code.compiler_options(ignore_module_conflict: true)
     Config.Holder.save_default()
     Pleroma.HTML.compile_scrubbers()
     Config.DeprecationWarnings.warn()