Do not try to chown when user or group is blank

This commit is contained in:
Mark McDowall 2014-01-31 08:11:19 -08:00
parent cf57188741
commit caf6f86573
1 changed files with 6 additions and 0 deletions

View File

@ -62,6 +62,12 @@ namespace NzbDrone.Mono
throw new LinuxPermissionsException("Error setting file permissions: " + error); throw new LinuxPermissionsException("Error setting file permissions: " + error);
} }
if (String.IsNullOrWhiteSpace(user) || String.IsNullOrWhiteSpace(group))
{
Logger.Trace("User or Group for chown not configured, skipping chown.");
return;
}
uint userId; uint userId;
uint groupId; uint groupId;