Skip to content

Commit

Permalink
Fixed user ID method
Browse files Browse the repository at this point in the history
  • Loading branch information
myleshorton committed May 20, 2016
1 parent b6dc886 commit 856d0d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/github.com/getlantern/lantern/lantern.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ func (uc *userConfig) GetToken() string {
return ""
}

func (uc *userConfig) GetUserID() string {
return "0"
func (uc *userConfig) GetUserID() int {
return 0
}

func run(configDir string) {
Expand Down

0 comments on commit 856d0d9

Please sign in to comment.