From a86e7212b3b1fb3df1be237ff143f71c9a06240d Mon Sep 17 00:00:00 2001 From: Richard Alam Date: Mon, 28 Oct 2019 10:22:58 -0700 Subject: [PATCH] red5 bbb apps compile issue - fix compile issue on bbb-apps-common as a result of adding a timestamp field on the header. --- .../main/scala/org/bigbluebutton/client/meeting/UserActor.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 bbb-apps-common/src/main/scala/org/bigbluebutton/client/meeting/UserActor.scala diff --git a/bbb-apps-common/src/main/scala/org/bigbluebutton/client/meeting/UserActor.scala b/bbb-apps-common/src/main/scala/org/bigbluebutton/client/meeting/UserActor.scala old mode 100644 new mode 100755 index 5bd1ec878da1..00535e2e9289 --- a/bbb-apps-common/src/main/scala/org/bigbluebutton/client/meeting/UserActor.scala +++ b/bbb-apps-common/src/main/scala/org/bigbluebutton/client/meeting/UserActor.scala @@ -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)