Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F113534
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
694 B
Referenced Files
None
Subscribers
None
View Options
diff --git a/lib/captcha.ex b/lib/captcha.ex
index 6a56835..0118acd 100644
--- a/lib/captcha.ex
+++ b/lib/captcha.ex
@@ -1,17 +1,17 @@
defmodule Captcha do
# allow customize receive timeout, default: 10_000
def get(timeout \\ 1_000) do
- Port.open({:spawn, Path.join(:code.priv_dir(:captcha), "captcha")}, [:binary])
+ pid = Port.open({:spawn, Path.join(:code.priv_dir(:captcha), "captcha")}, [:binary])
# Allow set receive timeout
receive do
- {_, {:data, data}} ->
+ {^pid, {:data, data}} ->
<<text::bytes-size(5), img::binary>> = data
{:ok, text, img }
other -> other
after timeout ->
{:timeout}
end
end
end
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Mon, Nov 25, 8:01 AM (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
39731
Default Alt Text
(694 B)
Attached To
Mode
R13 elixir-captcha
Attached
Detach File
Event Timeline
Log In to Comment