Ver a proveniência

Allows for missing avatar urls

main
Eric Amodio há 2 anos
ascendente
cometimento
51740812b6
2 ficheiros alterados com 2 adições e 2 eliminações
  1. +1
    -1
      src/avatars.ts
  2. +1
    -1
      src/git/models/author.ts

+ 1
- 1
src/avatars.ts Ver ficheiro

@ -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 Ver ficheiro

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

Carregando…
Cancelar
Guardar