Do not try to chown when user or group is blank

pull/4/head
Mark McDowall 11 years ago
parent cf57188741
commit caf6f86573

@ -62,6 +62,12 @@ namespace NzbDrone.Mono
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 groupId;

Loading…
Cancel
Save