We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50b6e2e commit f28f102Copy full SHA for f28f102
GChan/Models/Trackers/Sites/Board_4Chan.cs
@@ -57,7 +57,7 @@ public static bool UrlIsBoard(string url)
57
var id = thread["no"].Value<long>();
58
var url = "https://boards.4chan.org/" + BoardCode + "/thread/" + id;
59
var subject = thread["sub"]?.Value<string>() ?? Thread.NO_SUBJECT;
60
- var fileCount = thread["images"].Value<int>();
+ var fileCount = thread["images"].Value<int>() + 1; // Add 1 to the file count because all threads must start with an image, catalog excludes this.
61
62
return new Thread_4Chan(url, subject, fileCount);
63
})
0 commit comments