Skip to content

Commit 878309f

Browse files
committed
fix metadata pull
1 parent 280f132 commit 878309f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/routes/events.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ const eventsPlugin: FastifyPluginAsyncZodOpenApi = async (
181181
async (request, reply) => {
182182
const upcomingOnly = request.query?.upcomingOnly || false;
183183
const featuredOnly = request.query?.featuredOnly || false;
184-
const includeMetadata = request.query.includeMetadata || true;
184+
const includeMetadata = request.query.includeMetadata || false;
185185
const host = request.query?.host;
186186
const ts = request.query?.ts; // we only use this to disable cache control
187187
const projection = createProjectionParams(includeMetadata);

0 commit comments

Comments
 (0)