add vanity uid for check for uid in userinfo for admin purposes
This commit is contained in:
@@ -160,7 +160,7 @@ public class MareModule : InteractionModuleBase
|
||||
}
|
||||
else if (uid != null)
|
||||
{
|
||||
userInDb = await db.LodeStoneAuth.Include(u => u.User).SingleOrDefaultAsync(u => u.User.UID == uid).ConfigureAwait(false);
|
||||
userInDb = await db.LodeStoneAuth.Include(u => u.User).SingleOrDefaultAsync(u => u.User.UID == uid || u.User.Alias == uid).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
if (userInDb == null)
|
||||
|
||||
Reference in New Issue
Block a user