From: Matt Amos Date: Tue, 1 Sep 2009 10:10:49 +0000 (+0000) Subject: Fixed bug when oauthorizing with a token which no longer exists. X-Git-Tag: live~6566^2~10 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/7499fbc6e43897d30e088f14391c1203777cf929?hp=26a9f98dc1746e5964276034de893c0a86a13758 Fixed bug when oauthorizing with a token which no longer exists. --- diff --git a/app/controllers/oauth_controller.rb b/app/controllers/oauth_controller.rb index 98075b8f8..4b539b1fd 100644 --- a/app/controllers/oauth_controller.rb +++ b/app/controllers/oauth_controller.rb @@ -38,7 +38,7 @@ class OauthController < ApplicationController def oauthorize @token = RequestToken.find_by_token params[:oauth_token] - unless @token.invalidated? + unless @token.nil? or @token.invalidated? if request.post? any_auth = false @token.client_application.permissions.each do |pref|