diff options
Diffstat (limited to 'BackEnd/Timeline/Controllers/UserAvatarController.cs')
-rw-r--r-- | BackEnd/Timeline/Controllers/UserAvatarController.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BackEnd/Timeline/Controllers/UserAvatarController.cs b/BackEnd/Timeline/Controllers/UserAvatarController.cs index d0998fa7..5d4c70f3 100644 --- a/BackEnd/Timeline/Controllers/UserAvatarController.cs +++ b/BackEnd/Timeline/Controllers/UserAvatarController.cs @@ -55,7 +55,7 @@ namespace Timeline.Controllers long id;
try
{
- id = await _userService.GetUserIdByUsername(username);
+ id = await _userService.GetUserIdByUsernameAsync(username);
}
catch (UserNotExistException e)
{
@@ -91,7 +91,7 @@ namespace Timeline.Controllers long id;
try
{
- id = await _userService.GetUserIdByUsername(username);
+ id = await _userService.GetUserIdByUsernameAsync(username);
}
catch (UserNotExistException e)
{
@@ -150,7 +150,7 @@ namespace Timeline.Controllers long id;
try
{
- id = await _userService.GetUserIdByUsername(username);
+ id = await _userService.GetUserIdByUsernameAsync(username);
}
catch (UserNotExistException e)
{
|