diff options
author | Stijn Buys <ingar@osirion.org> | 2012-12-25 10:04:45 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2012-12-25 10:04:45 +0000 |
commit | 9f1149a88dfb0ef074778589bb587b8a6442a1b6 (patch) | |
tree | fc07b5625582b2b0e07527774f4aca7304e5b070 | |
parent | 046afbe7a221d9c90775e6e2d980821103aaae70 (diff) |
Corrected an issue where linebreaks were garbled in info network messages.
-rw-r--r-- | src/core/info.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/info.cc b/src/core/info.cc index dde1b20..5fef028 100644 --- a/src/core/info.cc +++ b/src/core/info.cc @@ -237,7 +237,7 @@ void Info::receive_server_update(std::istream &is) while ((is.get(c)) && (c != '"')) n += c; - add_text(n); + add_line(n); } // set timestamp to 0 |