mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 04:59:35 -07:00
Bug fix: get groupname of group rather than user
This commit is contained in:
parent
ea09a74ad9
commit
a467c2346f
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,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