1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-14 01:31:24 +01:00

Remove connection close

This commit is contained in:
Bernd Schoolmann 2025-01-31 12:23:42 +01:00
parent 7cbc7a5c3a
commit a8a59da753
No known key found for this signature in database

View File

@ -285,11 +285,9 @@ public class UserRepository : Repository<User, Guid>, IUserRepository
}
catch
{
connection.Close();
UnprotectData(user);
throw;
}
connection.Close();
UnprotectData(user);
}