diff options
author | Loïc Hoguin <[email protected]> | 2014-10-04 13:21:16 +0300 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2014-10-04 13:21:16 +0300 |
commit | 21d9ebe33b3eaf65a4118fc5c3e7364e64d63769 (patch) | |
tree | 5a679864c47cd50f55ad06831a36a92a03d3ad59 /examples/rest_pastebin | |
parent | 4bc8e330fa239d1ade18a5d75ea018f1a954bfb3 (diff) | |
download | cowboy-21d9ebe33b3eaf65a4118fc5c3e7364e64d63769.tar.gz cowboy-21d9ebe33b3eaf65a4118fc5c3e7364e64d63769.tar.bz2 cowboy-21d9ebe33b3eaf65a4118fc5c3e7364e64d63769.zip |
Reverse the order of arguments of match_* functions
Wasn't following the same order as the rest of the module.
Diffstat (limited to 'examples/rest_pastebin')
-rw-r--r-- | examples/rest_pastebin/src/toppage_handler.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/rest_pastebin/src/toppage_handler.erl b/examples/rest_pastebin/src/toppage_handler.erl index 80974fe..57b9315 100644 --- a/examples/rest_pastebin/src/toppage_handler.erl +++ b/examples/rest_pastebin/src/toppage_handler.erl @@ -57,13 +57,13 @@ create_paste(Req, State) -> paste_html(Req, index) -> {read_file("index.html"), Req, index}; paste_html(Req, Paste) -> - #{lang := Lang} = cowboy_req:match_qs(Req, [lang]), + #{lang := Lang} = cowboy_req:match_qs([lang], Req), {format_html(Paste, Lang), Req, Paste}. paste_text(Req, index) -> {read_file("index.txt"), Req, index}; paste_text(Req, Paste) -> - #{lang := Lang} = cowboy_req:match_qs(Req, [lang]), + #{lang := Lang} = cowboy_req:match_qs([lang], Req), {format_text(Paste, Lang), Req, Paste}. % Private |