Fix whitespace

This commit is contained in:
yell0wsuit 2024-04-18 20:54:50 +07:00
parent 9e473dde99
commit 2b3d26910b
No known key found for this signature in database
GPG key ID: 5B4F198A9800F6F4

View file

@ -11,10 +11,10 @@ using Ryujinx.Ava.UI.ViewModels;
using Ryujinx.UI.Common.Helper; using Ryujinx.UI.Common.Helper;
using System; using System;
using System.Diagnostics; using System.Diagnostics;
using System.Net.Http;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Button = Avalonia.Controls.Button; using Button = Avalonia.Controls.Button;
using System.Net.Http;
namespace Ryujinx.Ava.UI.Windows namespace Ryujinx.Ava.UI.Windows
@ -76,7 +76,9 @@ namespace Ryujinx.Ava.UI.Windows
foreach (var header in headers) foreach (var header in headers)
{ {
if (versionsFound >= count) break; // Stop after finding the desired number of versions if (versionsFound >= count)
break; // Stop after finding the desired number of versions
content.Append(header.OuterHtml); content.Append(header.OuterHtml);
var currentNode = header.ParentNode.NextSibling; var currentNode = header.ParentNode.NextSibling;
@ -85,7 +87,8 @@ namespace Ryujinx.Ava.UI.Windows
if (currentNode.Name == "div" && currentNode.SelectSingleNode("h2") != null) if (currentNode.Name == "div" && currentNode.SelectSingleNode("h2") != null)
{ {
versionsFound++; // Increment for each version header found versionsFound++; // Increment for each version header found
if (versionsFound >= count) break; if (versionsFound >= count)
break;
} }
content.Append(currentNode.OuterHtml); content.Append(currentNode.OuterHtml);
currentNode = currentNode.NextSibling; currentNode = currentNode.NextSibling;