Skip to content

Commit 1cc5cd6

Browse files
committed
correct name
1 parent b4c8842 commit 1cc5cd6

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/managers/MiddlewareManager.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,10 @@ const filterPipeRoutes = async (req, endpoints) => {
101101
if (coreCollections.includes(model)) {
102102
filteredEndpoints.push(endpoint);
103103
}
104-
if (jsrCollections.includes(model) && endpoint.includes("jsr") || endpoint.includes("collectibles")) {
104+
if (
105+
(jsrCollections.includes(model) && endpoint.includes("jsr")) ||
106+
endpoint.includes("levels")
107+
) {
105108
filteredEndpoints.push(endpoint);
106109
}
107110
if (jsrfCollections.includes(model) && endpoint.includes("jsrf")) {

0 commit comments

Comments
 (0)