Registrations currently disabled due to spam. Contact me externally if you need an account

Unverified Commit bc9faa02 authored by Rodrigo Nascimento's avatar Rodrigo Nascimento
Browse files

Do not show avatar for client

parent 03fc92d1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ Template.avatar.helpers
		if not username? and this.userId?
			username = Meteor.users.findOne(this.userId)?.username

		if not username?
		if not username? or Meteor.user()?.username is username
			return

		Session.get "avatar_random_#{username}"