Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/742a21252cc2c35ffd07d8cd758c5a73fecb2d3f You should set ROOT_URL correctly, otherwise the web may not work correctly.

Command Equality ignores properties defined in Command

pull/6/head
Mark McDowall 12 years ago
parent 4b5d03ac94
commit 742a21252c

@ -26,6 +26,11 @@ namespace NzbDrone.Core.Messaging.Commands
continue;
}
if (xProperty.DeclaringType == typeof (Command))
{
continue;
}
var yProperty = yProperties.Single(p => p.Name == xProperty.Name);
var xValue = xProperty.GetValue(x, null);

@ -58,8 +58,7 @@ namespace NzbDrone.Core.Messaging.Commands.Tracking
public Command FindExisting(Command command)
{
return RunningCommands().Where(c => c.GetType() == command.GetType())
.SingleOrDefault(t => CommandEqualityComparer.Instance.Equals(t, command));
return RunningCommands().SingleOrDefault(t => CommandEqualityComparer.Instance.Equals(t, command));
}
public void Store(Command command)

Loading…
Cancel
Save