mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
removed UGuid leftovers.
This commit is contained in:
parent
4da6654440
commit
c357d062d3
3 changed files with 5 additions and 14 deletions
|
@ -53,9 +53,9 @@ namespace NzbDrone.Update
|
|||
private int ParseProcessId(string[] args)
|
||||
{
|
||||
int id;
|
||||
if (args ==null || !Int32.TryParse(args[0], out id) || id <= 0)
|
||||
if (args == null || !Int32.TryParse(args[0], out id) || id <= 0)
|
||||
{
|
||||
throw new ArgumentOutOfRangeException("Invalid process id: " + args[0]);
|
||||
throw new ArgumentOutOfRangeException("args", "Invalid process ID");
|
||||
}
|
||||
|
||||
logger.Debug("NzbDrone processId:{0}", id);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue