Fix gravatar_id to use email.
This is a temporary fix for travis-ci/travis-ci#2837, until the sync is fixed.
This commit is contained in:
parent
21485d8851
commit
d181e898ac
|
@ -26,7 +26,7 @@ module Travis
|
|||
'name' => user.name,
|
||||
'login' => user.login,
|
||||
'email' => user.email,
|
||||
'gravatar_id' => user.gravatar_id,
|
||||
'gravatar_id' => Digest::MD5.hexdigest(user.email),
|
||||
'locale' => user.locale,
|
||||
'is_syncing' => user.syncing?,
|
||||
'synced_at' => format_date(user.synced_at),
|
||||
|
|
Loading…
Reference in New Issue
Block a user