mod_http_upload: Fix string()/binary() type issue
This commit is contained in:
parent
08f7291a24
commit
0b4e0e720e
|
@ -890,7 +890,7 @@ convert(Path, #media_info{type = T, width = W, height = H}) ->
|
||||||
-spec thumb_el(string(), binary()) -> xmlel().
|
-spec thumb_el(string(), binary()) -> xmlel().
|
||||||
|
|
||||||
thumb_el(Path, URI) ->
|
thumb_el(Path, URI) ->
|
||||||
ContentType = guess_content_type(Path),
|
ContentType = guess_content_type(list_to_binary(Path)),
|
||||||
case identify(Path) of
|
case identify(Path) of
|
||||||
{ok, #media_info{height = H, width = W}} ->
|
{ok, #media_info{height = H, width = W}} ->
|
||||||
#xmlel{name = <<"thumbnail">>,
|
#xmlel{name = <<"thumbnail">>,
|
||||||
|
|
Loading…
Reference in New Issue