Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: image sourced from github #680

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

Tanujkanti4441
Copy link
Contributor

@Tanujkanti4441 Tanujkanti4441 commented Dec 21, 2024

Prerequisites checklist

What is the purpose of this pull request?

Constructing old avatar url from the new one.

What changes did you make? (Give an overview)

Did omit the private- word and jwt token from the URL of image fetched from github.

Related Issues

Fixes #679

Is there anything you'd like reviewers to focus on?

@eslint-github-bot eslint-github-bot bot added the bug Something isn't working label Dec 21, 2024
Copy link

netlify bot commented Dec 21, 2024

Deploy Preview for ja-eslint ready!

Name Link
🔨 Latest commit d33888c
🔍 Latest deploy log https://app.netlify.com/sites/ja-eslint/deploys/6766634856b32600086320c4
😎 Deploy Preview https://deploy-preview-680--ja-eslint.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Dec 21, 2024

Deploy Preview for new-eslint ready!

Built without sensitive environment variables

Name Link
🔨 Latest commit d33888c
🔍 Latest deploy log https://app.netlify.com/sites/new-eslint/deploys/6766634888a8ad0008269318
😎 Deploy Preview https://deploy-preview-680--new-eslint.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Dec 21, 2024

Deploy Preview for es-eslint ready!

Name Link
🔨 Latest commit d33888c
🔍 Latest deploy log https://app.netlify.com/sites/es-eslint/deploys/67666348b8745400085a741a
😎 Deploy Preview https://deploy-preview-680--es-eslint.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Dec 21, 2024

Deploy Preview for zh-hans-eslint ready!

Name Link
🔨 Latest commit d33888c
🔍 Latest deploy log https://app.netlify.com/sites/zh-hans-eslint/deploys/6766634855c09a00084090ef
😎 Deploy Preview https://deploy-preview-680--zh-hans-eslint.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Dec 21, 2024

Deploy Preview for hi-eslint ready!

Name Link
🔨 Latest commit d33888c
🔍 Latest deploy log https://app.netlify.com/sites/hi-eslint/deploys/676663486120540008d06030
😎 Deploy Preview https://deploy-preview-680--hi-eslint.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Dec 21, 2024

Deploy Preview for fr-eslint ready!

Name Link
🔨 Latest commit d33888c
🔍 Latest deploy log https://app.netlify.com/sites/fr-eslint/deploys/6766634859d5a5000869aa98
😎 Deploy Preview https://deploy-preview-680--fr-eslint.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Dec 21, 2024

Deploy Preview for de-eslint ready!

Name Link
🔨 Latest commit d33888c
🔍 Latest deploy log https://app.netlify.com/sites/de-eslint/deploys/6766634896fb750007b9d742
😎 Deploy Preview https://deploy-preview-680--de-eslint.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Dec 21, 2024

Deploy Preview for pt-br-eslint ready!

Name Link
🔨 Latest commit d33888c
🔍 Latest deploy log https://app.netlify.com/sites/pt-br-eslint/deploys/67666348710fa600080e67c5
😎 Deploy Preview https://deploy-preview-680--pt-br-eslint.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Member

@amareshsm amareshsm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Thanks. Leaving it open for 2nd review.

@@ -46,7 +46,7 @@ async function fetchUserProfile() {
name: profile.name,
title: "Guest Author",
website: profile.blog,
avatar_url: profile.avatar_url,
avatar_url: `${profile.avatar_url.replace("private-", "").split("?")[0]}?v=4`,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
avatar_url: `${profile.avatar_url.replace("private-", "").split("?")[0]}?v=4`,
avatar_url: `${profile.avatar_url.replace("private-", "").split("?")[0]}?v=4`,

We could consider adding a fallback image in case the actual image isn't found, though I'm not sure if GitHub itself provides a fallback image.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sounds good to me, should we use the fallback image which we are using for sponsors? this one
Screenshot 2024-12-21 170645

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am 👍 let's get other's opinions too.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This fallback also looks good to me.

@@ -96,7 +96,7 @@ async function fetchUserProfile(username) {
: profile.blog
? `https://${profile.blog}`
: profile.blog,
avatar_url: profile.avatar_url,
avatar_url: `${profile.avatar_url.replace("private-", "").split("?")[0]}?v=4`,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we extract this into a shared place (e.g., tools/utils.js) as a function so that we don't have to repeat the same logic in multiple files?

@@ -96,7 +96,7 @@ async function fetchUserProfile(username) {
: profile.blog
? `https://${profile.blog}`
: profile.blog,
avatar_url: profile.avatar_url,
avatar_url: `${profile.avatar_url.replace("private-", "").split("?")[0]}?v=4`,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some URLs have u parameter:

"name": "Workleap",
"image": "https://avatars.githubusercontent.com/u/53535748?u=d1e55d7661d724bf2281c1bfd33cb8f99fe2465f&v=4",

Any ideas about what it represents?

Should we maybe remove just the jwt parameter and leave the others?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some URLs have u parameter:

Can it stands for unique? even though without this parameter the results are same.

Also seems links are already fixed by commit e385d5f should we still apply this fix?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also seems links are already fixed by commit e385d5f should we still apply this fix?

I also noticed that it might be a good idea to wait a couple of days. If GitHub is still testing features with a subset of users, it could potentially break again. As of now, we might not be part of the experiment, but if they do a full rollout, we could be impacted.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
accepted bug Something isn't working
Projects
Status: Second Review Needed
Development

Successfully merging this pull request may close these issues.

Bug: error in images fetched from github
4 participants