Summary: | Implement /kill | ||
---|---|---|---|
Product: | [Applications] konversation | Reporter: | Niklas Boelter <niklas> |
Component: | general | Assignee: | Konversation Developers <konversation-devel> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | ||
Priority: | NOR | ||
Version: | 1.0.1 | ||
Target Milestone: | --- | ||
Platform: | Ubuntu | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Niklas Boelter
2006-12-14 00:05:55 UTC
/kill isn't implemented at the moment; adapting bug. Implemented in trunk, rev 615863. Will be released in 1.1. I think there is a bug at this line: result.toServer = "KILL " + victim + " :" + parameter.right(victim.length()); it should be the rest of the string, so result.toServer = "KILL " + victim + " :" + parameter.right(parameter.length()-(1 + victim.length())); would be better. [Sorry for any mistakes, I have never used C++ before, but I hope you got the point.] Bah shows I shouldn't develop late at night... :( The correct solution is to use mid instead of right, thx for reporting it's fixed now (as of rev 615913). :) |