Summary: | konversation ignores aliases during connect (called by 'commands' option in network tab) | ||
---|---|---|---|
Product: | [Applications] konversation | Reporter: | Kevin Funk <kfunk> |
Component: | general | Assignee: | Konversation Developers <konversation-devel> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Kevin Funk
2006-11-23 17:17:13 UTC
SVN commit 607213 by hein: Support command aliases in network connect commands. BUG:137779 M +1 -0 ChangeLog M +2 -1 src/server.cpp --- trunk/extragear/network/konversation/ChangeLog #607212:607213 @@ -43,6 +43,7 @@ position rather than the end of the input line contents. - Fixed bug leading to crash upon initiating DCC Chat when "Focus new tabs" was enabled. +- Support command aliases in network connect commands. ------------------------------------------------------------------------------- Changes from 1.0 to 1.0.1 --- trunk/extragear/network/konversation/src/server.cpp #607212:607213 @@ -974,7 +974,8 @@ { QString output(*iter); output = output.simplifyWhiteSpace(); - Konversation::OutputFilterResult result = outputFilter->parse(getNickname(),output,QString::null); + getOutputFilter()->replaceAliases(output); + Konversation::OutputFilterResult result = getOutputFilter()->parse(getNickname(),output,QString::null); queue(result.toServer); } } |