fix: correct foreach syntax for .NET 8 compatibility

This commit is contained in:
jim
2026-05-19 16:27:38 -05:00
parent 21e848efb7
commit 18c5ac5401
+2 -1
View File
@@ -769,8 +769,9 @@ namespace URLNotesGrabberCORE
AutoReplenishment = true
});
foreach (int i, var blogInfo in blogsToProcess)
for (int i = 0; i < blogsToProcess.Count; i++)
{
var blogInfo = blogsToProcess[i];
int remaining = blogsToProcess.Count - i - 1;
string blogName = blogInfo.Item1;
int likesPulled = blogInfo.Item2;