1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-25 15:33:11 +00:00

Bug fix: get groupname of group rather than user

This commit is contained in:
TectonicEd 2014-02-26 09:13:30 +00:00
parent ea09a74ad9
commit a467c2346f

View file

@ -85,7 +85,7 @@ namespace NzbDrone.Mono
if (!uint.TryParse(group, out groupId))
{
var g = Syscall.getgrnam(user);
var g = Syscall.getgrnam(group);
if (g == null)
{