We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84c96c0 commit 7c827a4Copy full SHA for 7c827a4
src/Domain/ygo-scheduled-tasks.domain/ETL/ArticleList/Processor/Item/CardRulingItemProcessor.cs
@@ -1,4 +1,5 @@
1
-using System.Collections.Generic;
+using System;
2
+using System.Collections.Generic;
3
using System.Threading.Tasks;
4
using wikia.Api;
5
using wikia.Models.Article.AlphabeticalList;
@@ -41,6 +42,9 @@ public async Task<ArticleTaskResult> ProcessItem(UnexpandedArticle item)
41
42
43
foreach (var cardRulingSection in articleCardRulings.Sections)
44
{
45
+ if(cardRulingSection.Title.Equals("References", StringComparison.OrdinalIgnoreCase))
46
+ continue;
47
+
48
var rulingSection = new CardRulingSection
49
50
Name = cardRulingSection.Title,
0 commit comments