Skip to content

Commit

Permalink
red5 bbb apps compile issue
Browse files Browse the repository at this point in the history
 - fix compile issue on bbb-apps-common as a result of adding a timestamp field on the header.
  • Loading branch information
ritzalam committed Oct 28, 2019
1 parent 24adb09 commit a86e721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bbb-apps-common/src/main/scala/org/bigbluebutton/client/meeting/UserActor.scala
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class UserActor(
val msgClient = msgFromClient.copy(header = newHeader)

val routing = Routing.addMsgFromClientRouting(msgClient.header.meetingId, msgClient.header.userId)
val envelope = new BbbCoreEnvelope(msgClient.header.name, routing)
val envelope = new BbbCoreEnvelope(msgClient.header.name, routing, System.currentTimeMillis())

if (msgClient.header.name == "ClientToServerLatencyTracerMsg") {
log.info("-- trace -- " + msg.json)
Expand Down

0 comments on commit a86e721

Please sign in to comment.