Skip to content

Commit 30166f6

Browse files
committed
fetching file listing from github used an out of date class selector
1 parent 9354008 commit 30166f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CodeGeneration/CodeGeneration.LowLevelClient/ApiGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ private void FindJsonFilesOnListing(string listingUrl, string html)
8686

8787
WriteToEndpointsFolder("root.html", html);
8888

89-
var endpoints = dom[".js-directory-link"]
89+
var endpoints = dom[".js-navigation-open"]
9090
.Select(s => s.InnerText)
9191
.Where(s => !string.IsNullOrEmpty(s) && s.EndsWith(".json"))
9292
.ToList();

0 commit comments

Comments
 (0)