mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Merge pull request #59 from TectonicEd/patch-2
Bug fix: get groupname of group rather than user
This commit is contained in:
commit
953024cd40
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ namespace NzbDrone.Mono
|
||||||
|
|
||||||
if (!uint.TryParse(group, out groupId))
|
if (!uint.TryParse(group, out groupId))
|
||||||
{
|
{
|
||||||
var g = Syscall.getgrnam(user);
|
var g = Syscall.getgrnam(group);
|
||||||
|
|
||||||
if (g == null)
|
if (g == null)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue