Skip to content

Commit

Permalink
Small fix on MessageHeader decodeWord.
Browse files Browse the repository at this point in the history
  • Loading branch information
kmribti committed Jan 16, 2016
1 parent fc2fd47 commit f94d204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Net/src/MessageHeader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ std::string MessageHeader::decodeWord(const std::string& text, const std::string

// check if there are standar text before the rfc2047 chunk, and if so, copy it.
if (pos > 0) {
outs += tmp.substr(0, pos - 1);
outs += tmp.substr(0, pos);
}

// remove text already copied.
Expand Down

0 comments on commit f94d204

Please sign in to comment.