File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Client.UI/ViewModels/User Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ public UserListViewModel()
31
31
ReloadFriendRequests ( ) ;
32
32
ReloadBlockedUsers ( ) ;
33
33
34
- AddFriendCmd = new ( async ( o ) => await HandlerUser ( o as string , UserRelationAction . AddFriend ) ) ;
35
- BlockUserCmd = new ( async ( o ) => await HandlerUser ( o as string , UserRelationAction . BlockUser ) ) ;
34
+ AddFriendCmd = new ( async ( o ) => await HandleUser ( o as string , UserRelationAction . AddFriend ) ) ;
35
+ BlockUserCmd = new ( async ( o ) => await HandleUser ( o as string , UserRelationAction . BlockUser ) ) ;
36
36
}
37
37
38
38
public void Dispose ( )
@@ -93,7 +93,7 @@ private void ReloadBlockedUsers()
93
93
} ) ;
94
94
}
95
95
96
- private static Task HandlerUser ( string name , UserRelationAction action )
96
+ private static Task HandleUser ( string name , UserRelationAction action )
97
97
{
98
98
if ( string . IsNullOrEmpty ( name ) )
99
99
return Task . CompletedTask ;
You can’t perform that action at this time.
0 commit comments