Skip to content

Commit b4c8842

Browse files
committed
fix levels pipe
1 parent 93afa61 commit b4c8842

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/managers/MiddlewareManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ const filterPipeRoutes = async (req, endpoints) => {
101101
if (coreCollections.includes(model)) {
102102
filteredEndpoints.push(endpoint);
103103
}
104-
if (jsrCollections.includes(model) && endpoint.includes("jsr")) {
104+
if (jsrCollections.includes(model) && endpoint.includes("jsr") || endpoint.includes("collectibles")) {
105105
filteredEndpoints.push(endpoint);
106106
}
107107
if (jsrfCollections.includes(model) && endpoint.includes("jsrf")) {

0 commit comments

Comments
 (0)