Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix various missing method or class loading due to ASF update #111

Merged
merged 10 commits into from
Dec 4, 2024
Prev Previous commit
Next Next commit
Bugfix RedditHelper for issue #110
  • Loading branch information
maxisoft committed Dec 3, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 3aa01e5cd397f68b5d0ffee1a6ef21cf4e99e828
2 changes: 1 addition & 1 deletion ASFFreeGames/Reddit/RedditHelper.cs
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@ IReadOnlyCollection<RedditGameEntry> returnValue() {
}

// ReSharper disable once LoopCanBePartlyConvertedToQuery
foreach (JsonNode? comment in children.AsArray()) {
foreach (JsonNode? comment in (JsonArray) children) {
JsonNode? commentData = comment?["data"];

if (commentData is null) {