summaryrefslogtreecommitdiff
path: root/src/mod_http_upload.erl
diff options
context:
space:
mode:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2015-10-26 15:05:28 +0300
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2015-10-26 15:05:28 +0300
commit6f2e178de1370bd26437a504d50bc19dd66065ed (patch)
treead23c9770b226b61df2af85725c043ffcdc10be2 /src/mod_http_upload.erl
parentAdd HTTP File Upload support (XEP-0363) (diff)
Rename badly entitled record field
Diffstat (limited to 'src/mod_http_upload.erl')
-rw-r--r--src/mod_http_upload.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mod_http_upload.erl b/src/mod_http_upload.erl
index a720e528..40f194be 100644
--- a/src/mod_http_upload.erl
+++ b/src/mod_http_upload.erl
@@ -94,7 +94,7 @@
-record(media_info,
{type :: string(),
height :: integer(),
- weight :: integer()}).
+ width :: integer()}).
-type state() :: #state{}.
-type slot() :: [binary()].
@@ -844,7 +844,7 @@ identify(Path) ->
{ok, #media_info{
type = string:to_lower(T),
height = list_to_integer(H),
- weight = list_to_integer(W)}};
+ width = list_to_integer(W)}};
_ ->
?ERROR_MSG("failed to identify type of ~s: ~s", [Path, Res]),
{error, Res}
@@ -852,7 +852,7 @@ identify(Path) ->
-spec convert(string(), media_info()) -> {ok, string()} | pass.
-convert(Path, #media_info{type = T, weight = W, height = H}) ->
+convert(Path, #media_info{type = T, width = W, height = H}) ->
if W*H >= 25000000 ->
?DEBUG("the image ~s is more than 25 Mbpx", [Path]),
pass;
@@ -882,7 +882,7 @@ convert(Path, #media_info{type = T, weight = W, height = H}) ->
thumb_el(Path, URI) ->
ContentType = guess_content_type(Path),
case identify(Path) of
- {ok, #media_info{height = H, weight = W}} ->
+ {ok, #media_info{height = H, width = W}} ->
#xmlel{name = <<"thumbnail">>,
attrs = [{<<"xmlns">>, ?NS_THUMBS_1},
{<<"media-type">>, ContentType},