mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 10:09:02 +00:00
don't try to truncate non-strings
This commit is contained in:
parent
2975da284b
commit
cb99cfcc65
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue