Mercurial > rsstweet
diff app/controllers/tweets_controller.rb @ 25:70d70736faee
Properly rescue 403 and 404.
author | edogawaconan <me@myconan.net> |
---|---|
date | Fri, 05 Sep 2014 23:38:57 +0900 |
parents | 207917e41964 |
children | 03f904c070f7 |
line wrap: on
line diff
--- a/app/controllers/tweets_controller.rb Fri Sep 05 23:36:55 2014 +0900 +++ b/app/controllers/tweets_controller.rb Fri Sep 05 23:38:57 2014 +0900 @@ -2,5 +2,9 @@ def show @tweets = Tweet.new(params[:id]).timeline @user = @tweets.first.user + rescue Twitter::Error::NotFound + head :not_found + rescue Twitter::Error::Unauthorized + head :forbidden end end