From 9cd2e43e6272a48d8971843bf93e0deb498664fa Mon Sep 17 00:00:00 2001 From: David Adi Nugroho Date: Thu, 9 Sep 2021 19:20:08 +0700 Subject: [PATCH] Fix octocat image link (#1281) Co-authored-by: Richie Bendall --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 173677dbd..aa2e2af63 100644 --- a/README.md +++ b/README.md @@ -284,7 +284,7 @@ import fetch from 'node-fetch'; const streamPipeline = promisify(pipeline); -const response = await fetch('https://assets-cdn.github.com/images/modules/logos_page/Octocat.png'); +const response = await fetch('https://github.githubassets.com/images/modules/logos_page/Octocat.png'); if (!response.ok) throw new Error(`unexpected response ${response.statusText}`);