I'm seeing an issue in 1.96 RC where gravatars don't load. The problem seems to be in
public string GetAvatarUrlForUser
in YAFAvatars.cs.
The issue is that email is not set in time for this code to return true:
email.IsValueCreated && email.Value.IsSet()
what's interesting is if I set a breakpoint there and wait, eventually the email does get set. I think the problem is using Lazy intialization of the email string. Can you address that?