We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cf34c6 commit 9ee6ecfCopy full SHA for 9ee6ecf
models/user.js
@@ -45,7 +45,7 @@ var UserSchema = new Schema({
45
UserSchema.virtual('avatar_url').get(function () {
46
var url = this.avatar || ('//gravatar.com/avatar/' + utility.md5(this.email.toLowerCase()) + '?size=48');
47
48
- // gravatar 现在使用裸域
+ // www.gravatar.com 被墙
49
url = url.replace('//www.gravatar.com', '//gravatar.com');
50
51
// 让协议自适应 protocol
0 commit comments