We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 300a373 commit fb9f23bCopy full SHA for fb9f23b
1 file changed
WebCrawler/Crawler/RuliwebCrawler.cs
@@ -65,7 +65,7 @@ protected override void OnPageCrawl(IDocument document)
65
Parallel.For(0, rows.Count, n =>
66
{
67
var cursor = n * colCount;
68
- var id = tdContent[cursor + 0];
+ var id = tdContent[cursor + 0].ToIntRegex();
69
70
var title = tdContent[cursor + 1];
71
@@ -93,7 +93,7 @@ protected override void OnPageCrawl(IDocument document)
93
Type = Source.Type,
94
BoardId = Source.BoardId,
95
BoardName = Source.Name,
96
- Id = id,
+ RowId = id,
97
Title = title,
98
Author = author,
99
Recommend = recommend,
0 commit comments