Просмотр исходного кода

Merge branch 'fix_pastebin_example' of git://github.com/acammack/cowboy

Loïc Hoguin 12 лет назад
Родитель
Сommit
5755d1155f
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      examples/rest_pastebin/src/toppage_handler.erl

+ 3 - 3
examples/rest_pastebin/src/toppage_handler.erl

@@ -46,12 +46,12 @@ resource_exists(Req, _State) ->
 	end.
 
 create_paste(Req, State) ->
-	{<<$/, PasteID/binary>>, Req2} = cowboy_req:meta(put_path, Req),
-	{ok, [{<<"paste">>, Paste}], Req3} = cowboy_req:body_qs(Req2),
+	PasteID = new_paste_id(),
+	{ok, [{<<"paste">>, Paste}], Req3} = cowboy_req:body_qs(Req),
 	ok = file:write_file(full_path(PasteID), Paste),
 	case cowboy_req:method(Req3) of
 		{<<"POST">>, Req4} ->
-			{<<$/, (new_paste_id())/binary>>, Req4, State};
+			{<<$/, PasteID/binary>>, Req4, State};
 		{_, Req4} ->
 			{true, Req4, State}
 	end.