Skip to content

Commit

Permalink
Added check for koding username
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee Olayvar committed Nov 27, 2014
1 parent c211c43 commit 695dd38
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion gulpfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ tap_json = (file, t) ->

# Format a member object into a link
format_member = (member) ->
"[#{member?.name}](https://koding.com/#{member?.koding})"
if member.koding?
"[#{member?.name}](https://koding.com/#{member?.koding})"
else
member?.name



Expand Down

0 comments on commit 695dd38

Please sign in to comment.