diff options
author | lain <lain@soykaf.club> | 2020-04-29 18:14:34 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-04-29 18:14:34 +0000 |
commit | 89a6c340812a53daf00a203dacd8e12a25eb7ad2 (patch) | |
tree | d871cbdb3ec4d8e045e3a85fea5ba9f4fcf37bbe /lib | |
parent | 528ea779a61d12f74ee9669bbd28783bf66aa5cc (diff) | |
download | pleroma-89a6c340812a53daf00a203dacd8e12a25eb7ad2.tar.gz |
Apply suggestion to lib/pleroma/chat.ex
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/chat.ex | 2 |
1 files changed, 1 insertions, 1 deletions
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) |