mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-11 18:24:43 +02:00
Tools: Contributor fixes (#4068)
This commit is contained in:
parent
18e4f7ffe7
commit
9755a69be8
@ -2,7 +2,7 @@
|
||||
|
||||
const request = require('request');
|
||||
|
||||
const readmePath = `${__dirname}/../README.md`;
|
||||
const readmePath = `${__dirname}/../../README.md`;
|
||||
const { insertContentIntoFile } = require('./tool-utils.js');
|
||||
|
||||
async function gitHubContributors(page) {
|
||||
@ -34,7 +34,7 @@ function contributorTable(contributors) {
|
||||
const c = contributors[contributorIndex];
|
||||
contributorIndex++;
|
||||
|
||||
const cell = `<img width="50" src="${c.avatar_url}"/></br>[${c.login}](${c.url})`;
|
||||
const cell = `<img width="50" src="${c.avatar_url}"/></br>[${c.login}](${c.html_url})`;
|
||||
|
||||
row.push(cell);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user