1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-10-31 00:07:48 +02:00

Tools: Contributor fixes (#4068)

This commit is contained in:
Johan Hammar
2020-11-09 20:36:49 +01:00
committed by GitHub
parent 18e4f7ffe7
commit 9755a69be8

View File

@@ -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);