Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"fix!: ircserv now handles Ctrl-D correctly" #50

Merged
merged 2 commits into from
Jun 1, 2024

Conversation

ygor-sena
Copy link
Owner

@ygor-sena ygor-sena commented Jun 1, 2024

THE LAST OF THIS PROJECT BEFORE EVAL!

Note

In Server.cpp we had to add the following conditional on line 440
if (command == "WHO")
{
cmd_executed = true;
break;
}

In Mode.cpp we had to add the following conditional on line 57
if (modeFlags.empty())
{
_reply_code = 461;
return;
}

These two conditional were added because the client IRC Hexchat had a problem when sending the command /join #channel, resulting in three server outputs: JOIN, MODE and WHO.

@ygor-sena ygor-sena added the fix Label for solved bugs label Jun 1, 2024
@ygor-sena ygor-sena linked an issue Jun 1, 2024 that may be closed by this pull request
Copy link
Collaborator

@carlosrocha-dev carlosrocha-dev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok

@ygor-sena ygor-sena merged commit ee2de14 into main Jun 1, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
fix Label for solved bugs
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implements Doxygen description
3 participants