I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Unverified Commit 9e18bded authored by zzz's avatar zzz
Browse files

i2ptunnel: Fix CTCP ACTION (Gitlab #481)

aka /me ...
inadvertently filtered, broken by changes for IRCv3
was blocked in both directions, so both sending and receiving client need this fix for it to get through
parent fbd5ddf7
No related branches found
No related tags found
No related merge requests found
Pipeline #1751 passed
...@@ -114,6 +114,8 @@ abstract class IRCFilter { ...@@ -114,6 +114,8 @@ abstract class IRCFilter {
{ {
String msg; String msg;
msg = field[idx++]; msg = field[idx++];
if (idx < field.length)
msg += ' ' + field[idx];
if(msg.indexOf(0x01) >= 0) // CTCP marker ^A can be anywhere, not just immediately after the ':' if(msg.indexOf(0x01) >= 0) // CTCP marker ^A can be anywhere, not just immediately after the ':'
{ {
...@@ -360,6 +362,8 @@ abstract class IRCFilter { ...@@ -360,6 +362,8 @@ abstract class IRCFilter {
if (field.length < idx + 2) if (field.length < idx + 2)
return s; // invalid, allow server response return s; // invalid, allow server response
String msg = field[idx + 1]; String msg = field[idx + 1];
if (idx + 2 < field.length)
msg += ' ' + field[idx + 2];
if(msg.indexOf(0x01) >= 0) // CTCP marker ^A can be anywhere, not just immediately after the ':' if(msg.indexOf(0x01) >= 0) // CTCP marker ^A can be anywhere, not just immediately after the ':'
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment