R1/R2 fix
This commit is contained in:
@@ -57,9 +57,9 @@ public class T1R1Processor(
|
||||
|
||||
var newRecords = new List<Record>();
|
||||
|
||||
for (var month = 1; month <= 14; month++)
|
||||
for (var month = 1; month < 14; month++)
|
||||
{
|
||||
if (year != DateTime.UtcNow.Year || (month > DateTime.UtcNow.Month && month != 13))
|
||||
if (year > DateTime.UtcNow.Year || (( year == DateTime.UtcNow.Year && month > DateTime.UtcNow.Month && month != 13)))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user