-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
I was reading through the code in /lib/octopi/repository.rb, and found a little typo on line #100.
def issues(state = "open")
IssueSet.new(Octopi::Issue.find_all(:user => owner, :repository => self))
end
as far as I can tell, ought to be:
def issues(state = "open")
IssueSet.new(Octopi::Issue.find_all(:user => self.owner, :repository => self))
end
My app couldn't find the user, because it didn't know what "user" was, as opposed to "self.user." Thought I'd share my findings!
Metadata
Metadata
Assignees
Labels
No labels