File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ * Cinch 2.3.2, 25 April 2016
2
+ - Fix exception and premature timeouts in DCC send
3
+
1
4
* Cinch 2.3.1, 01 November 2015
2
5
- Fix logging of exceptions, which was broken by Cinch 2.3.0
3
6
- Fix the accidental removal of hooks. This could lead to hooks
4
7
never executing or being removed under certain conditions. Anyone
5
8
relying on hooks, especially those using them for ACL systems,
6
9
should update to Cinch 2.3.1.
10
+
7
11
* Cinch 2.3.0, 26 October 2015
8
12
- Add basic support for STATUSMSG messages. These are messages
9
13
directed at voiced or ops in a channel, by sending a message to
15
19
and other confidential information. See
16
20
http://www.rubydoc.info/gems/cinch/file/docs/logging.md for more
17
21
information.
22
+
18
23
* Cinch 2.2.8, 23 October 2015
19
24
- Fix WHOIS retry code, don't raise an exception
20
25
Original file line number Diff line number Diff line change @@ -77,9 +77,9 @@ def listen
77
77
fd = nil
78
78
Timeout . timeout ( 30 ) do
79
79
fd , _ = @socket . accept
80
- send_data ( fd )
81
- fd . close
82
80
end
81
+ send_data ( fd )
82
+ fd . close
83
83
ensure
84
84
@socket . close
85
85
end
You can’t perform that action at this time.
0 commit comments