if prefix == 'by':
# XXX this needs supporting. silently ignore for now
continue
-
- if tag_text == 'me':
- tag_text = c.user.name
# Must be 3-50 alphanumeric characters
if not re.match('^[a-z0-9]{3,50}$', tag_text):
# Do work!
if prefix:
- target_user = User.get_by(name=tag_text)
+ if tag_text == 'me':
+ target_user = c.user
+ else:
+ target_user = User.get_by(name=tag_text)
# Special tag; at the moment, just a relationship
if prefix == 'by':