| Summary: | CTCP VERSION reply on svn is broken | ||
|---|---|---|---|
| Product: | [Applications] konversation | Reporter: | Harald Sitter <sitter> |
| Component: | general | Assignee: | Konversation Bugs <konversation-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | crash | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Harald Sitter
2005-08-28 18:56:44 UTC
SVN commit 454369 by psn:
Ok another try to fix CTCP hopefully I don't break something else this
time...
M +1 -1 inputfilter.cpp
--- trunk/extragear/network/konversation/src/inputfilter.cpp #454368:454369
@@ -128,7 +128,7 @@
{
bool isChan = isAChannel(parameterList[0]);
// CTCP message?
- if(server->identifyMsg() && (trailing.at(1) != QChar(0x01) || \
trailing.lower().contains(0x01 + "action"))) { + if(server->identifyMsg() && \
(trailing.at(0) == '+' || trailing.at(0) == '-')) { trailing = trailing.mid(1);
}
|