Selaa lähdekoodia

don't try to truncate non-strings

object-id-column
Sadposter 4 vuotta sitten
vanhempi
commit
cb99cfcc65
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      lib/pleroma/user.ex

+ 1
- 1
lib/pleroma/user.ex Näytä tiedosto

@@ -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…
Peruuta
Tallenna