diff options
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; } |