From: lain Date: Wed, 29 Apr 2020 18:14:34 +0000 (+0000) Subject: Apply suggestion to lib/pleroma/chat.ex X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=89a6c340812a53daf00a203dacd8e12a25eb7ad2;p=akkoma Apply suggestion to lib/pleroma/chat.ex --- diff --git a/lib/pleroma/chat.ex b/lib/pleroma/chat.ex index b8545063a..6b1f832ce 100644 --- a/lib/pleroma/chat.ex +++ b/lib/pleroma/chat.ex @@ -29,7 +29,7 @@ defmodule Pleroma.Chat do |> validate_change(:recipient, fn :recipient, recipient -> case User.get_cached_by_ap_id(recipient) do - nil -> [recipient: "must a an existing user"] + nil -> [recipient: "must be an existing user"] _ -> [] end end)