summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluca-marie <ml.kochsiek@fu-berlin.de>2016-09-23 15:46:25 +0200
committerthea <ta.kupler@gmail.com>2016-11-08 16:31:33 +0100
commit5ac9cbfea145124f574238746c8badbd87cf71df (patch)
tree27d9e5080c74c47e565190e8f7197787ebc9d3cd
parentfa9f61caa635beb7b12d913dcd8351caf04a2260 (diff)
increase number of fetched tweets to make sure 3 most recent tweets without RTs and @ are displayed
-rw-r--r--app/helpers/twitter_helper.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/app/helpers/twitter_helper.rb b/app/helpers/twitter_helper.rb
index e44d883..7ce28be 100644
--- a/app/helpers/twitter_helper.rb
+++ b/app/helpers/twitter_helper.rb
@@ -22,11 +22,7 @@ module TwitterHelper
def update_twitter_info
twitter_user_info[0] = Time.now
twitter_user_info[1] = twitter_client.user(twitter_handle).name
-<<<<<<< 791e03c838ccb0f346e34b04838eedaeb5fcff36
twitter_user_info[2] = twitter_client.user_timeline(twitter_handle, {:count => 200}).select{ |tweet| tweet.text.start_with?('RT','@')==false}
-=======
- twitter_user_info[2] = twitter_client.user_timeline(twitter_handle).select{ |tweet| tweet.text.start_with?('RT','@')==false}.take(10)
->>>>>>> Doc updated on how to customize avatar picture in twitter feature; update error response messages; added 'config/customization/images' + link in 'config/initializer/customization.rb'
if twitter_user_info[2] == nil
error_handling
twitter_user_info[3] = "The twitter handle does not exist or the account's tweets are protected. Please change the privacy settings accordingly or contact your provider-admin."