Fix avatar display issue in Pull Request tree view #7851
+4,335
−4,304
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix Avatar Display Issue in Pull Request Tree View
Fixes #6914
Problem Description
Logged-in users were seeing random generated avatars (Gravatar "retro" style) instead of their actual GitHub profile avatars in the VS Code GitHub Pull Request extension's tree view sidebar. Other users' avatars displayed correctly, but the current user's avatar was consistently showing as a random generated image.
Root Cause
The issue was caused by two interconnected problems:
Incorrect Avatar Fallback Logic: The
getAvatarWithEnterpriseFallback
function was forcing Gravatar fallback for enterprise environments, even when valid GitHub avatar URLs were available.Persistent Avatar Caching: The avatar caching mechanism used cache keys based only on user login (e.g.,
user123.jpg
), not the avatar URL. Once a Gravatar image was cached, it would continue to be served even after fixing the URL logic.Solution
1. Fixed Avatar URL Logic (
src/github/utils.ts
)2. Implemented Cache Invalidation (
src/common/uri.ts
){userId}.jpg
to{userId}_{urlHash}.jpg
Technical Details
Before:
After:
Cache Key Generation:
Files Changed
src/github/utils.ts
- Core avatar URL logic fixsrc/common/uri.ts
- Cache invalidation mechanismpackage.json
- Version bumpTesting
Impact