witten
/
luminotes
Archived
1
0
Fork 0

Made signup conversion tracking more accurate.

This commit is contained in:
Dan Helfman 2008-10-15 12:53:00 -07:00
parent c11cf6f43d
commit c94443a8c3
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ class Notebooks( object ):
# if the user doesn't have any storage bytes yet, they're a new user, so see what type of
# conversion this is (demo or signup)
if result[ "user" ].storage_bytes == 0:
if result[ "user" ].username != u"anonymous" and result[ "user" ].storage_bytes == 0:
if u"this is a demo" in [ note.title for note in result[ "startup_notes" ] ]:
result[ "conversion" ] = u"demo"
else: