This commit is contained in:
Robert Kaplow 2011-08-02 16:26:51 -04:00
parent 9682ef3971
commit 3affee9bc0
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
# Original Author:: Bob Aman, Winton Davies, Robert Kaplow
# Maintainer:: Robert Kaplow (mailto:rkaplow@google.com)
$:.unshift('lib')
$LOAD_PATH:.unshift File.dirname('lib')
require 'rubygems'
require 'sinatra'
require 'datamapper'
@ -61,7 +61,7 @@ before do
@client.authorization.redirect_uri = to('/oauth2callback')
# Workaround for now as expires_in may be nil, but when converted to int it becomes 0.
@client.authorization.expires_in = Time.now + 1800 if @client.authorization.expires_in.to_i == 0
@client.authorization.expires_in = 1800 if @client.authorization.expires_in.to_i == 0
if session[:token_id]
# Load the access token here if it's available