Fix dialyzer error

lib/pleroma/application.ex:1:pattern_match The pattern can never match the type true.
This commit is contained in:
Mark Felder 2024-07-23 09:43:41 -04:00
parent ff663c0aeb
commit 2ee8f4f062
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