]> Untitled Git - lemmy.git/commitdiff
Fixing ban user bug. Fixes #876
authorDessalines <tyhou13@gmx.com>
Wed, 1 Jul 2020 12:22:41 +0000 (08:22 -0400)
committerDessalines <tyhou13@gmx.com>
Wed, 1 Jul 2020 12:22:41 +0000 (08:22 -0400)
server/src/api/user.rs

index 0b6458e759315be8de0d084e1d93665b1ce78c28..8f09ea5fc07e249a4e94f2c63024e38cfacbe633 100644 (file)
@@ -710,7 +710,7 @@ impl Perform for Oper<BanUser> {
       return Err(APIError::err("not_an_admin").into());
     }
 
-    match User_::ban_user(&conn, user_id, data.ban) {
+    match User_::ban_user(&conn, data.user_id, data.ban) {
       Ok(user) => user,
       Err(_e) => return Err(APIError::err("couldnt_update_user").into()),
     };