diff options
Diffstat (limited to 'Swift/Controllers')
-rw-r--r-- | Swift/Controllers/StatusCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/StatusCache.cpp b/Swift/Controllers/StatusCache.cpp index d3c8be5..01a5fbc 100644 --- a/Swift/Controllers/StatusCache.cpp +++ b/Swift/Controllers/StatusCache.cpp @@ -76,7 +76,7 @@ void StatusCache::loadRecents() { } StatusShow::Type type; type = static_cast<StatusShow::Type>(boost::lexical_cast<size_t>(bits[0])); - previousStatuses_.push_back(PreviousStatus(bits[1], type)); + previousStatuses_.push_back(PreviousStatus(boost::trim(bits[1]), type)); } } } |