mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
removed redundant qualifiers.
This commit is contained in:
parent
50f66cbcca
commit
e89a35522e
35 changed files with 128 additions and 106 deletions
|
@ -74,18 +74,18 @@ namespace NzbDrone.Core.Indexers
|
|||
|
||||
public void CheckForError()
|
||||
{
|
||||
if (this.MoveToContent() == XmlNodeType.Element)
|
||||
if (MoveToContent() == XmlNodeType.Element)
|
||||
{
|
||||
if (this.Name != "error")
|
||||
if (Name != "error")
|
||||
return;
|
||||
|
||||
var message = "Error: ";
|
||||
|
||||
if (this.HasAttributes)
|
||||
if (HasAttributes)
|
||||
{
|
||||
while (this.MoveToNextAttribute())
|
||||
while (MoveToNextAttribute())
|
||||
{
|
||||
message += String.Format(" [{0}:{1}]", this.Name, this.Value);
|
||||
message += String.Format(" [{0}:{1}]", Name, Value);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue