Skip to content

Commit

Permalink
Merge branch 'idemacs-feature/fix-group-owned-projects-list' into dev…
Browse files Browse the repository at this point in the history
…elop
  • Loading branch information
nlamirault committed May 30, 2015
2 parents 76fb0f9 + 27eaa29 commit 0def792
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gitlab-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@
"Create entries for 'tabulated-list-entries from PROJECTS."
(mapcar (lambda (p)
(let ((id (number-to-string (assoc-default 'id p)))
(owner (assoc-default 'owner p))
(owner (if (assoc-default 'owner p)
(assoc-default 'owner p)
(assoc-default 'namespace p)))
(namespace (assoc-default 'namespace p)))
(list id
(vector ;id
Expand Down

0 comments on commit 0def792

Please sign in to comment.