Skip to content

Commit

Permalink
[#189] add channel to monolog labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Kreezag committed Jul 4, 2024
1 parent 94852ad commit b99119d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/entities/monolog/lib/use-monolog/normalize-monolog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const normalizeMonolog = (event: ServerEvent<Monolog>): NormalizedEvent<M
return {
id: event.uuid,
type: EVENT_TYPES.MONOLOG,
labels: [EVENT_TYPES.MONOLOG],
labels: [EVENT_TYPES.MONOLOG, event.payload.channel],
origin,
serverName: "",
date: event.timestamp ? new Date(event.timestamp * 1000) : null,
Expand Down

0 comments on commit b99119d

Please sign in to comment.