| Summary: | Knode can't handle MID's | ||
|---|---|---|---|
| Product: | [Unmaintained] knode | Reporter: | Andreas Hartmann <andihartmann> |
| Component: | general | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | jens-bugs.kde.org |
| Priority: | NOR | ||
| Version First Reported In: | 0.7.6 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Andreas Hartmann
2004-01-11 09:20:43 UTC
Subject: kdepim/knode CVS commit by maragato: Correctly strip ending '/' from msgId. CCMAIL: 72369-done@bugs.kde.org CCMAIL: helio@kde.org M +2 -0 knarticlewidget.cpp 1.163 --- kdepim/knode/knarticlewidget.cpp #1.162:1.163 @@ -1527,4 +1527,6 @@ void KNArticleWidget::anchorClicked(cons break; case ATmsgid: + if (target.endsWith("/")) + target.truncate(target.length()-1); kdDebug(5003) << "KNArticleWidget::anchorClicked() : message-id " << target << endl; Subject: Re: Knode can't handle MID's Works fine now! Thank you very much, kind regards, Andreas Hartmann |