Don't set default avatar url on ENV

Fingerprinting filter that Brocolli uses to add checksums to filenames
apparently is very greedy. When a URL that has a valid image is present
in ENV, fingerprint filter will going to wipe out the entire config's
meta tag value with fingerprinted url with an asset host.
This commit is contained in:
Piotr Sarnacki 2015-02-16 14:59:40 +01:00
parent 0e86df8da0
commit 0578af0c4c
2 changed files with 3 additions and 3 deletions

View File

@ -39,6 +39,7 @@ email = (email) ->
"mailto:#{email}"
gravatarImage = (email, size) ->
"https://www.gravatar.com/avatar/#{md5(email)}?s=#{size}&d=#{encodeURIComponent(config.avatarDefaultUrl)}"
avatarDefaultUrl = 'https://travis-ci.org/images/ui/default-avatar.png'
"https://www.gravatar.com/avatar/#{md5(email)}?s=#{size}&d=#{encodeURIComponent(avatarDefaultUrl)}"
`export { plainTextLog, githubPullRequest, githubCommit, githubRepo, githubWatchers, githubNetwork, githubAdmin, statusImage, ccXml, email, gravatarImage }`

View File

@ -28,8 +28,7 @@ module.exports = function(environment) {
pro: false,
enterprise: false,
endpoints: {},
intervals: { updateTimes: 1000 },
avatarDefaultUrl: 'https://travis-ci.org/images/ui/default-avatar.png'
intervals: { updateTimes: 1000 }
};
if (typeof process !== 'undefined') {