File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -104,10 +104,10 @@ Here are all of the extension settings with their default values. To change any
104
104
// Priority of encoding
105
105
" svn.experimental.encoding_priority" : [],
106
106
107
- // Url for the gravitar icon using the <AUTHOR>, <AUTHOR_MD5> and <SIZE> placeholders
107
+ // Url for the gravatar icon using the <AUTHOR>, <AUTHOR_MD5> and <SIZE> placeholders
108
108
" svn.gravatar.icon_url" : " https://www.gravatar.com/avatar/<AUTHOR_MD5>.jpg?s=<SIZE>&d=robohash" ,
109
109
110
- // Use garavatar icons in log viewers
110
+ // Use gravatar icons in log viewers
111
111
" svn.gravatars.enabled" : true ,
112
112
113
113
// Ignores the warning when SVN is missing
Original file line number Diff line number Diff line change 1073
1073
},
1074
1074
"svn.gravatar.icon_url" : {
1075
1075
"type" : " string" ,
1076
- "description" : " Url for the gravitar icon using the <AUTHOR>, <AUTHOR_MD5> and <SIZE> placeholders" ,
1076
+ "description" : " Url for the gravatar icon using the <AUTHOR>, <AUTHOR_MD5> and <SIZE> placeholders" ,
1077
1077
"examples" : [
1078
1078
" https://www.gravatar.com/avatar/<AUTHOR_MD5>.jpg?s=<SIZE>&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/<AUTHOR>/128"
1079
1079
],
1080
1080
"default" : " https://www.gravatar.com/avatar/<AUTHOR_MD5>.jpg?s=<SIZE>&d=robohash"
1081
1081
},
1082
1082
"svn.gravatars.enabled" : {
1083
1083
"type" : " boolean" ,
1084
- "description" : " Use garavatar icons in log viewers" ,
1084
+ "description" : " Use gravatar icons in log viewers" ,
1085
1085
"default" : true
1086
1086
},
1087
1087
"svn.ignoreMissingSvnWarning" : {
Original file line number Diff line number Diff line change @@ -216,13 +216,13 @@ export function getCommitIcon(
216
216
return gravatar ;
217
217
}
218
218
219
- const gravitarUrl = configuration
219
+ const gravatarUrl = configuration
220
220
. get ( "gravatar.icon_url" , "" )
221
221
. replace ( "<AUTHOR>" , author )
222
222
. replace ( "<AUTHOR_MD5>" , md5 ( author ) )
223
223
. replace ( "<SIZE>" , size . toString ( ) ) ;
224
224
225
- gravatar = Uri . parse ( gravitarUrl ) ;
225
+ gravatar = Uri . parse ( gravatarUrl ) ;
226
226
227
227
gravatarCache . set ( author , gravatar ) ;
228
228
You can’t perform that action at this time.
0 commit comments