소스 검색

Allows for missing avatar urls

main
Eric Amodio 2 년 전
부모
커밋
51740812b6
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -1
      src/avatars.ts
  2. +1
    -1
      src/git/models/author.ts

+ 1
- 1
src/avatars.ts 파일 보기

@ -194,7 +194,7 @@ async function getAvatarUriFromRemoteProvider(
account = await remote?.provider.getAccountForCommit(repoPathOrCommit.ref, { avatarSize: size });
}
}
if (account == null) {
if (account?.avatarUrl == null) {
// If we have no account assume that won't change (without a reset), so set the timestamp to "never expire"
avatar.uri = undefined;
avatar.timestamp = maxSmallIntegerV8;

+ 1
- 1
src/git/models/author.ts 파일 보기

@ -4,5 +4,5 @@ export interface Account {
provider: RemoteProviderReference;
name: string | undefined;
email: string | undefined;
avatarUrl: string;
avatarUrl: string | undefined;
}

불러오는 중...
취소
저장