From aa9b79a2e70156dbd210d644f4fef774de28d79c Mon Sep 17 00:00:00 2001 From: Collin Barrett Date: Wed, 22 Aug 2018 18:12:38 -0500 Subject: [PATCH] Revert "temp send emails for long rules" This reverts commit 4607ae6e91c1597410fa603f76814ea32193d10d. --- src/FilterLists.Services/Snapshot/Snapshot.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/FilterLists.Services/Snapshot/Snapshot.cs b/src/FilterLists.Services/Snapshot/Snapshot.cs index 8b117de95..8b1f16923 100644 --- a/src/FilterLists.Services/Snapshot/Snapshot.cs +++ b/src/FilterLists.Services/Snapshot/Snapshot.cs @@ -114,11 +114,7 @@ private async Task> GetLines() { string line; while ((line = await streamReader.ReadLineAsync()) != null) - { lines.AddIfNotNullOrEmpty(line.LintLine()); - if (line.Length >= 191) - await emailService.SendEmailAsync("Long Line Possibly Truncated", line); - } } }