diff --git a/csharp/App/Backend/Controller.cs b/csharp/App/Backend/Controller.cs index cb761e6c2..f6366cd97 100644 --- a/csharp/App/Backend/Controller.cs +++ b/csharp/App/Backend/Controller.cs @@ -27,6 +27,7 @@ public class Controller : ControllerBase { if (!user.VerifyPassword(password)) { + //return Unauthorized("No Password set"); throw new Exceptions(401,"Wrong Password Exception", "Please try again.", Request.Path.Value!); } } @@ -431,8 +432,6 @@ public class Controller : ControllerBase : Unauthorized(); } - - } diff --git a/csharp/App/Backend/db.sqlite b/csharp/App/Backend/db.sqlite index 1970e9bd1..c2a26b55c 100644 Binary files a/csharp/App/Backend/db.sqlite and b/csharp/App/Backend/db.sqlite differ