summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorluca-marie <ml.kochsiek@fu-berlin.de>2016-09-22 16:05:02 +0200
committerluca-marie <ml.kochsiek@fu-berlin.de>2016-09-22 16:05:02 +0200
commitcd07bbe8d0390a8622bcde257efcb3e11038de63 (patch)
tree5e978e1122a79b9522aa56c213467ce5e9234cbf /app
parent6f9c4fdab2caef90e49ca965617e767b50bcbbb2 (diff)
Modified error messages
Diffstat (limited to 'app')
-rw-r--r--app/helpers/twitter_helper.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/helpers/twitter_helper.rb b/app/helpers/twitter_helper.rb
index 719f95e..e3b468a 100644
--- a/app/helpers/twitter_helper.rb
+++ b/app/helpers/twitter_helper.rb
@@ -22,26 +22,26 @@ module TwitterHelper
def update_twitter_info
twitter_user_info[0] = Time.now
twitter_user_info[1] = twitter_client.user(twitter_handle).name
- twitter_user_info[2] = twitter_client.user_timeline(twitter_handle).select{ |tweet| tweet.text.start_with?('RT','@')==false}.take(3)
+ twitter_user_info[2] = twitter_client.user_timeline(twitter_handle).select{ |tweet| tweet.text.start_with?('RT','@')==false}.take(7)
if twitter_user_info[2] == nil
error_handling
- twitter_user_info[3] = "The twitter-handle does not exist or the account is private. Please change it or contact your provider-admin."
+ twitter_user_info[3] = "The twitter handle does not exist or the account's tweets are protected. Please change the privacy settings accordingly."
end
rescue Twitter::Error::BadRequest
error_handling
- twitter_user_info[3] = "The request to have the tweets shown was invalid or cannot be otherwise served."
+ twitter_user_info[3] = "The request to display tweets is invalid or cannot be otherwise served."
rescue Twitter::Error::Unauthorized
error_handling
- twitter_user_info[3] = "Please change your twitter-credentials, make sure that the twitter-account you access is public or contact your provider-admin to have the tweets shown."
+ twitter_user_info[3] = "The account's tweets are protected and cannot be displayed. Please change the privacy settings of the corresponding account."
rescue Twitter::Error::Forbidden
error_handling
- twitter_user_info[3] = "The request to have the tweets shown is understood, but it has been refused or access is not allowed."
+ twitter_user_info[3] = "The request to display tweets is understood, but it has been refused or access is not allowed."
rescue Twitter::Error::NotAcceptable
error_handling
- twitter_user_info[3] = "An invalid format is specified in the request to have the tweets shown."
+ twitter_user_info[3] = "An invalid format is specified in the request to display tweets."
rescue Twitter::Error::TooManyRequests
error_handling
- twitter_user_info[3] = "The rate-limit for accessing the tweets is reached. You should be able to see the tweets in a couple of minutes."
+ twitter_user_info[3] = "The rate-limit for accessing the tweets is reached. You should be able to display tweets in a couple of minutes."
end
def error_handling