don't try to truncate non-strings

This commit is contained in:
Sadposter 2019-09-04 15:57:42 +01:00
parent 2975da284b
commit cb99cfcc65
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ defmodule Pleroma.User do
end
defp truncate_if_exists(params, key, max_length) do
if Map.has_key?(params, key) do
if Map.has_key?(params, key) and is_binary(params[key]) do
{value, _chopped} = String.split_at(params[key], max_length)
Map.put(params, key, value)
else