Merge branch 'dialyzer' into 'develop'

Fix dialyzer error

See merge request pleroma/pleroma!4190
This commit is contained in:
feld 2024-07-23 14:51:45 +00:00
commit f32a837afa
3 changed files with 3 additions and 2 deletions

View file

View file

@ -187,6 +187,8 @@
config :pleroma, Pleroma.Web.RichMedia.Backfill,
stream_out: Pleroma.Web.ActivityPub.ActivityPubMock
config :pleroma, Pleroma.Web.Plugs.HTTPSecurityPlug, enable: false
if File.exists?("./config/test.secret.exs") do
import_config "test.secret.exs"
else

View file

@ -14,7 +14,6 @@ defmodule Pleroma.Application do
@name Mix.Project.config()[:name]
@version Mix.Project.config()[:version]
@repository Mix.Project.config()[:source_url]
@compile_env Mix.env()
def name, do: @name
def version, do: @version
@ -53,7 +52,7 @@ def start(_type, _args) do
Pleroma.Config.Oban.warn()
Config.DeprecationWarnings.warn()
if @compile_env != :test do
if Config.get([Pleroma.Web.Plugs.HTTPSecurityPlug, :enable], true) do
Pleroma.Web.Plugs.HTTPSecurityPlug.warn_if_disabled()
end