Skip to content

Commit

Permalink
Merge pull request #4696 from Azhrei/fix-getContents
Browse files Browse the repository at this point in the history
Fix for #4695: library.getContents() returns empty JSON sometimes
  • Loading branch information
cwisniew authored Feb 15, 2024
2 parents 6e50d06 + 43a4951 commit f87db04
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ private JsonArray listLibraryContents(Library library)
.thenAccept(
l -> {
l.forEach(json::add);
});
})
.get();

return json;
}
Expand Down

0 comments on commit f87db04

Please sign in to comment.