forked from AkkomaGang/akkoma
Only find SHA256 for packs that are shared
This commit is contained in:
parent
54b8e683bc
commit
7fb7dd9e0e
1 changed files with 12 additions and 6 deletions
|
@ -36,13 +36,19 @@ def list_packs(conn, _params) do
|
|||
|> Enum.map(fn {name, pack} ->
|
||||
pack_path = Path.join(@emoji_dir_path, name)
|
||||
|
||||
if can_download?(pack, pack_path) do
|
||||
archive_for_sha = make_archive(name, pack, pack_path)
|
||||
archive_sha = :crypto.hash(:sha256, archive_for_sha) |> Base.encode16()
|
||||
|
||||
{name,
|
||||
pack
|
||||
|> put_in(["pack", "can-download"], can_download?(pack, pack_path))
|
||||
|> put_in(["pack", "can-download"], true)
|
||||
|> put_in(["pack", "download-sha256"], archive_sha)}
|
||||
else
|
||||
{name,
|
||||
pack
|
||||
|> put_in(["pack", "can-download"], false)}
|
||||
end
|
||||
end)
|
||||
|> Enum.into(%{})
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue