File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ export const getContributors: ViewComponent = async (result, config) => {
317
317
async ( contributor : any , key : number ) => {
318
318
const url = new URL ( contributor . avatarUrl ) ;
319
319
let params = qs . parse ( url . search , { ignoreQueryPrefix : true } ) ;
320
- url . search = qs . stringify ( { ...params , s : "128 " } ) ;
320
+ url . search = qs . stringify ( { ...params , s : "64 " } ) ;
321
321
322
322
const response = await fetch ( url . toString ( ) ) ;
323
323
const arrayBuffer = await response . arrayBuffer ( ) ;
@@ -361,7 +361,7 @@ export const getUserSponsorList: ViewComponent = async (result, config) => {
361
361
async ( sponsor : any , key : number ) => {
362
362
const url = new URL ( sponsor . sponsorEntity . avatarUrl ) ;
363
363
let params = qs . parse ( url . search , { ignoreQueryPrefix : true } ) ;
364
- url . search = qs . stringify ( { ...params , s : "128 " } ) ;
364
+ url . search = qs . stringify ( { ...params , s : "64 " } ) ;
365
365
366
366
const response = await fetch ( url . toString ( ) ) ;
367
367
const arrayBuffer = await response . arrayBuffer ( ) ;
You can’t perform that action at this time.
0 commit comments