diff options
author | Vitaly Takmazov | 2020-12-30 08:57:15 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2020-12-30 08:57:15 +0300 |
commit | 650fd803616d0e782d02b965c49fa06be65cea79 (patch) | |
tree | b6c6400cd72d86de438415e79a9ed41ae6af7e79 /Juick/ViewControllers | |
parent | 3d0d75fd56fe5823468318129de4da55e4b27b25 (diff) |
Fetch external users
Diffstat (limited to 'Juick/ViewControllers')
-rw-r--r-- | Juick/ViewControllers/JuickNavigationController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Juick/ViewControllers/JuickNavigationController.m b/Juick/ViewControllers/JuickNavigationController.m index aaf3765..f535c82 100644 --- a/Juick/ViewControllers/JuickNavigationController.m +++ b/Juick/ViewControllers/JuickNavigationController.m @@ -28,7 +28,7 @@ [[AppDelegate shared].api me:^(User *user, NSError *err) { NSString *avatarUrl; if (err || !user) { - avatarUrl = @"https://i.juick.com/av-96.png"; + avatarUrl = [API defaultAvatarUrl]; } else { avatarUrl = user.avatar; } |