Browse Source

Fixes missing ;

main
Eric Amodio 3 years ago
parent
commit
fde7defb31
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/avatars.ts

+ 1
- 1
src/avatars.ts View File

@ -74,7 +74,7 @@ export function getAvatarUri(
ensureAvatarCache(avatarCache); ensureAvatarCache(avatarCache);
// Double the size to avoid blurring on the retina screen // Double the size to avoid blurring on the retina screen
size *= 2
size *= 2;
if (email == null || email.length === 0) { if (email == null || email.length === 0) {
const avatar = createOrUpdateAvatar( const avatar = createOrUpdateAvatar(

Loading…
Cancel
Save