diff --git a/internal/signaling/stores/postgres.go b/internal/signaling/stores/postgres.go index 3d7016b..12670c6 100644 --- a/internal/signaling/stores/postgres.go +++ b/internal/signaling/stores/postgres.go @@ -119,7 +119,7 @@ func (s *PostgresStore) Subscribe(ctx context.Context, topic string, callback Su } func (s *PostgresStore) Publish(ctx context.Context, topic string, data []byte) error { - if len(topic) > 64 { + if len(topic) > 76 { return fmt.Errorf("topic too long") } if strings.ContainsRune(topic, ':') {