Fix Russia station parser to read latest archive row

This commit is contained in:
2569718930@qq.com
2026-04-18 16:15:34 +08:00
parent 4e4c809265
commit 8c6a7c4071
2 changed files with 22 additions and 1 deletions
@@ -175,7 +175,7 @@ class RussiaStationSourceMixin:
return None
pair_count = min(len(time_rows), len(data_rows)) - 1
for idx in range(pair_count):
for idx in range(pair_count - 1, -1, -1):
time_row = time_rows[idx + 1]
data_row = data_rows[idx + 1]
if len(time_row) < 2 or len(data_row) < 6: