1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-24 08:12:38 +02:00

Update Elixir example (#77)

Base.decode16!/2 only accepts uppercase strings as default so the elixir example does not work out of the box.
This commit is contained in:
René Koller 2018-10-18 15:47:21 +02:00 committed by Sergey Alexandrovich
parent f5f6b24d4b
commit cca6bdaf06

View File

@ -1,7 +1,7 @@
defmodule App.Imgproxy do
@prefix "https://imgproxy.mybiz.xyz"
@key Base.decode16!("943b421c9eb07c830af81030552c86009268de4e532ba2ee2eab8247c6da0881")
@salt Base.decode16!("520f986b998545b4785e0defbc4f3c1203f22de2374a3d53cb7a7fe9fea309c5")
@key Base.decode16!("943b421c9eb07c830af81030552c86009268de4e532ba2ee2eab8247c6da0881", case: :lower)
@salt Base.decode16!("520f986b998545b4785e0defbc4f3c1203f22de2374a3d53cb7a7fe9fea309c5", case: :lower)
def build_url(img_url, opts) do
path = build_path(img_url, opts)