From f50b5e1a584ee2e3e1bcf24b967ded1489f09968 Mon Sep 17 00:00:00 2001 From: Badlop Date: Mon, 1 Apr 2024 14:07:51 +0200 Subject: [PATCH] Fix typo in elixir code that breaks 537aac2 when using mix --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 3f3845cf7..96d74691b 100644 --- a/mix.exs +++ b/mix.exs @@ -84,7 +84,7 @@ defmodule Ejabberd.MixProject do try do {:ok, concrete} = :dialyzer_utils.get_core_from_beam(:code.which(module)) {:ok, types} = :dialyzer_utils.get_record_and_type_info(concrete) - if Maps.has_key(types, typeDef) do + if Map.has_key?(types, typeDef) do okResult else []