fix: remove all URI encoding/decoding from core for keysets

This commit is contained in:
Zach Daniel 2023-01-05 10:25:25 -05:00
parent 0694e87670
commit 84d9b60290

View file

@ -46,7 +46,6 @@ defmodule Ash.Page.Keyset do
defp decode_values(values, key) do
{:ok,
values
|> URI.decode_www_form()
|> Base.decode64!()
|> non_executable_binary_to_term([:safe])}
rescue
@ -110,7 +109,6 @@ defmodule Ash.Page.Keyset do
|> field_values(fields)
|> :erlang.term_to_binary()
|> Base.encode64()
|> URI.encode_www_form()
end
defp field_values(record, sort) do