This commit is contained in:
aditya.chandel
2025-10-17 13:36:43 -06:00
parent e70e7f89db
commit 3cbb86e66c
@@ -89,7 +89,12 @@ public class OpdsController {
.body(feed);
}
@GetMapping(value = "/search.opds", produces = "application/opensearchdescription+xml")
@GetMapping(value = "/search.opds", produces = {
"application/opensearchdescription+xml",
"application/atom+xml",
"application/xml",
"text/xml"
})
public ResponseEntity<String> getSearchDescription() {
String searchDoc = opdsFeedService.getOpenSearchDescription();
return ResponseEntity.ok()