fix: correct foreach syntax for .NET 8 compatibility
This commit is contained in:
@@ -769,8 +769,9 @@ namespace URLNotesGrabberCORE
|
|||||||
AutoReplenishment = true
|
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;
|
int remaining = blogsToProcess.Count - i - 1;
|
||||||
string blogName = blogInfo.Item1;
|
string blogName = blogInfo.Item1;
|
||||||
int likesPulled = blogInfo.Item2;
|
int likesPulled = blogInfo.Item2;
|
||||||
|
|||||||
Reference in New Issue
Block a user