From 86fcf4df1cbc231e10f6a15bb6117ce2590f3666 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 2 Jun 2016 20:12:37 -0400 Subject: Updated libtwitter++ (user stream disconnection bug) --- vendor/libtwittercpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/libtwittercpp b/vendor/libtwittercpp index 442f1ee..9fdcbee 160000 --- a/vendor/libtwittercpp +++ b/vendor/libtwittercpp @@ -1 +1 @@ -Subproject commit 442f1ee071152be04c4184473ddfee5040795b76 +Subproject commit 9fdcbee29350846db7f136b023da64bb2e6a93f5 -- cgit 1.4.1 From 6419bd20050441fbcedce2cb3b5cffbdaba2a9b8 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sun, 5 Jun 2016 15:26:37 -0400 Subject: Fixed final closing delimiters appearing on new line --- kgramstats.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kgramstats.cpp b/kgramstats.cpp index cb63db6..426603f 100644 --- a/kgramstats.cpp +++ b/kgramstats.cpp @@ -746,7 +746,7 @@ std::string rawr::randomSentence(int maxL) } // Remove the trailing space - if (result.back() == ' ') + if (result.back() == ' ' || result.back() == '\n') { result.pop_back(); } -- cgit 1.4.1