Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/appview-v2' into appview-v2-testing
Browse files Browse the repository at this point in the history
  • Loading branch information
devinivy committed Jan 26, 2024
2 parents 7ee5723 + ed9e234 commit d0d0ab1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bsky/src/hydration/label.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class LabelHydrator {
const res = await this.dataplane.getLabels({ subjects, issuers })
return res.labels.reduce((acc, cur) => {
const label = parseJsonBytes(cur) as Label | undefined
if (!label) return acc
if (!label || label.neg) return acc
const entry = acc.get(label.uri)
if (entry) {
entry.push(label)
Expand Down

0 comments on commit d0d0ab1

Please sign in to comment.