Update the pack fallback-src sha generation condition

The old one would not regenerate sha when fallback src changed
This commit is contained in:
Ekaterina Vaartis 2019-08-16 13:30:14 +03:00
parent 9dc9689144
commit 261d92f9c2
1 changed files with 6 additions and 1 deletions

View File

@ -229,8 +229,13 @@ def update_metadata(conn, %{"name" => name, "new_data" => new_data}) do
full_pack = Jason.decode!(File.read!(pack_file_p))
# The new fallback-src is in the new data and it's not the same as it was in the old data
should_update_fb_sha =
not is_nil(new_data["fallback-src"]) and
new_data["fallback-src"] != full_pack["pack"]["fallback-src"]
new_data =
if not is_nil(new_data["fallback-src"]) and is_nil(new_data["fallback-src-sha256"]) do
if should_update_fb_sha do
pack_arch = Tesla.get!(new_data["fallback-src"]).body
{:ok, flist} = :zip.unzip(pack_arch, [:memory])