Skip to content

Commit

Permalink
Fix output type on subscribeLabels (#2303)
Browse files Browse the repository at this point in the history
fix output type on subscribeLabels
  • Loading branch information
dholms authored Mar 13, 2024
1 parent 6f39783 commit 89aa232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ozone/src/api/label/subscribeLabels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function (server: Server, ctx: AppContext) {
}

for await (const evt of outbox.events(cursor, signal)) {
yield { $type: 'com.atproto.label.subscribeLabels#labels', ...evt }
yield { $type: '#labels', ...evt }
}
})
}

0 comments on commit 89aa232

Please sign in to comment.