Skip to content

Commit

Permalink
update proto
Browse files Browse the repository at this point in the history
  • Loading branch information
jibon57 committed Nov 16, 2023
1 parent 78a084e commit be7e9f5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ require (
github.com/jordic/lti v0.0.0-20160211051708-2c756eacbab9
github.com/livekit/protocol v1.9.1
github.com/livekit/server-sdk-go v1.1.1
github.com/mynaparrot/plugnmeet-protocol v0.0.0-20231116105620-9ec588f45cf6
github.com/mynaparrot/plugnmeet-protocol v0.0.0-20231116163140-015191151259
github.com/redis/go-redis/v9 v9.3.0
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.8.4
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ github.com/mattn/go-runewidth v0.0.15 h1:UNAjwbU9l54TA3KzvqLGxwWjHmMgBUVhBiTjelZ
github.com/mattn/go-runewidth v0.0.15/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg=
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0/go.mod h1:QUyp042oQthUoa9bqDv0ER0wrtXnBruoNd7aNjkbP+k=
github.com/mynaparrot/plugnmeet-protocol v0.0.0-20231116105620-9ec588f45cf6 h1:cWIsMwHbEi8RX/QuniUpFmXgx2wJRgkRzgeg+ZW4wMQ=
github.com/mynaparrot/plugnmeet-protocol v0.0.0-20231116105620-9ec588f45cf6/go.mod h1:0vBy3B8TIvq1Zc8/bayiMtnL8450UHhWjTma4l/UiKI=
github.com/mynaparrot/plugnmeet-protocol v0.0.0-20231116163140-015191151259 h1:PTl83CH2yBiy4ZqfKd2blMyIQgnGvNCdPSZ4Nes/8Tc=
github.com/mynaparrot/plugnmeet-protocol v0.0.0-20231116163140-015191151259/go.mod h1:0vBy3B8TIvq1Zc8/bayiMtnL8450UHhWjTma4l/UiKI=
github.com/nats-io/nats.go v1.31.0 h1:/WFBHEc/dOKBF6qf1TZhrdEfTmOZ5JzdJ+Y3m6Y/p7E=
github.com/nats-io/nats.go v1.31.0/go.mod h1:di3Bm5MLsoB4Bx61CBTsxuarI36WbhAwOm8QrW39+i8=
github.com/nats-io/nkeys v0.4.6 h1:IzVe95ru2CT6ta874rt9saQRkWfe2nFj1NtvYSLqMzY=
Expand Down
2 changes: 1 addition & 1 deletion pkg/models/recording.go
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ func (rm *RecordingModel) sendToWebhookNotifier(r *plugnmeet.RecorderToPlugNmeet
},
}

err := n.SendWebhook(msg)
err := n.SendWebhook(msg, nil)
if err != nil {
log.Errorln(err)
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/models/speech_services.go
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ func (s *SpeechServices) sendToWebhookNotifier(rId, rSid string, userId *string,
TotalUsage: usage,
},
}
err := n.SendWebhook(msg)
err := n.SendWebhook(msg, nil)
if err != nil {
log.Errorln(err)
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/models/webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -352,5 +352,5 @@ func (w *webhookEvent) sendToWebhookNotifier(event *livekit.WebhookEvent) {
}

msg := utils.PrepareCommonWebhookNotifyEvent(event)
_ = w.notifier.SendWebhook(msg)
_ = w.notifier.SendWebhook(msg, nil)
}

0 comments on commit be7e9f5

Please sign in to comment.