Skip to content

Commit fb9f23b

Browse files
committed
루리웹 크롤러 오류 수정
1 parent 300a373 commit fb9f23b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

WebCrawler/Crawler/RuliwebCrawler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ protected override void OnPageCrawl(IDocument document)
6565
Parallel.For(0, rows.Count, n =>
6666
{
6767
var cursor = n * colCount;
68-
var id = tdContent[cursor + 0];
68+
var id = tdContent[cursor + 0].ToIntRegex();
6969

7070
var title = tdContent[cursor + 1];
7171

@@ -93,7 +93,7 @@ protected override void OnPageCrawl(IDocument document)
9393
Type = Source.Type,
9494
BoardId = Source.BoardId,
9595
BoardName = Source.Name,
96-
Id = id,
96+
RowId = id,
9797
Title = title,
9898
Author = author,
9999
Recommend = recommend,

0 commit comments

Comments
 (0)