mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
Fix broken member info endpoint
This commit is contained in:
parent
51b9afddea
commit
29180bcd2e
1 changed files with 2 additions and 2 deletions
|
|
@ -11,10 +11,10 @@ namespace PluralKit.API.Controllers
|
|||
public class MemberController: ControllerBase
|
||||
{
|
||||
private MemberStore _members;
|
||||
private IDbConnection _conn;
|
||||
private DbConnectionFactory _conn;
|
||||
private TokenAuthService _auth;
|
||||
|
||||
public MemberController(MemberStore members, IDbConnection conn, TokenAuthService auth)
|
||||
public MemberController(MemberStore members, DbConnectionFactory conn, TokenAuthService auth)
|
||||
{
|
||||
_members = members;
|
||||
_conn = conn;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue