Commit cb4eff56a9a470e9ce23e75a82d87a0790cfa002

Authored by Nathan Broadbent
1 parent b8c11203
Exists in master and in 1 other branch production

Fixed GithubIssuesTracker creation with username, not login

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/controllers/errs_controller.rb
... ... @@ -46,7 +46,7 @@ class ErrsController < ApplicationController
46 46 else
47 47 @tracker = GithubIssuesTracker.new(
48 48 :app => @app,
49   - :login => current_user.github_login,
  49 + :username => current_user.github_login,
50 50 :oauth_token => current_user.github_oauth_token
51 51 )
52 52 end
... ...