Skip to content

Commit

Permalink
Move along
Browse files Browse the repository at this point in the history
These aren't the droids you're looking for
  • Loading branch information
Maxx53 committed Sep 25, 2014
1 parent dc9dc09 commit 6a61e2c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scr/SCMBot/MainUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,8 @@ private string GetScanErrMess(string message)
break;
case "6": mess = "Item is not supported in html source!";
break;
case "8": mess = "Move along...";
break;
default: mess = "Unknown error";
break;
}
Expand Down
5 changes: 5 additions & 0 deletions scr/SCMBot/SteamUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -804,6 +804,11 @@ public byte ParseLotList(string content, List<ScanItem> lst, CurrInfoLst currLst
//403 Forbidden
return 5;
}
else if (content.Length < 40)
{
//Move along
return 8;
}
else if (content[0] != '{')
{
//Json is not valid
Expand Down

0 comments on commit 6a61e2c

Please sign in to comment.