Merge pull request #754 from ritzalam/fix-presentation-delete
- fix issue where deleting presentation doesn't remove the presentat…
This commit is contained in:
commit
700ddecd43
@ -50,7 +50,7 @@ libraryDependencies ++= {
|
||||
"com.google.code.gson" % "gson" % "1.7.1",
|
||||
"redis.clients" % "jedis" % "2.1.0",
|
||||
"org.apache.commons" % "commons-lang3" % "3.2",
|
||||
"org.bigbluebutton" % "bbb-common-message" % "0.0.10"
|
||||
"org.bigbluebutton" % "bbb-common-message" % "0.0.11"
|
||||
)}
|
||||
|
||||
|
||||
|
@ -50,7 +50,7 @@ libraryDependencies ++= {
|
||||
"com.google.code.gson" % "gson" % "1.7.1",
|
||||
"redis.clients" % "jedis" % "2.1.0",
|
||||
"org.apache.commons" % "commons-lang3" % "3.2",
|
||||
"org.bigbluebutton" % "bbb-common-message" % "0.0.10",
|
||||
"org.bigbluebutton" % "bbb-common-message" % "0.0.11",
|
||||
"org.bigbluebutton" % "bbb-fsesl-client" % "0.0.2"
|
||||
)}
|
||||
|
||||
|
@ -4,7 +4,7 @@ name := "bbb-common-message"
|
||||
|
||||
organization := "org.bigbluebutton"
|
||||
|
||||
version := "0.0.10"
|
||||
version := "0.0.11"
|
||||
|
||||
// We want to have our jar files in lib_managed dir.
|
||||
// This way we'll have the right path when we import
|
||||
|
@ -44,7 +44,7 @@ public class PresentationRemovedMessage implements ISubscribedMessage {
|
||||
if (payload.has(MEETING_ID)
|
||||
&& payload.has(PRESENTATION_ID)) {
|
||||
String meetingId = payload.get(MEETING_ID).getAsString();
|
||||
String presentationId = payload.get(MEETING_ID).getAsString();
|
||||
String presentationId = payload.get(PRESENTATION_ID).getAsString();
|
||||
return new PresentationRemovedMessage(meetingId, presentationId);
|
||||
}
|
||||
}
|
||||
|
@ -112,7 +112,7 @@ dependencies {
|
||||
compile 'com.google.code.gson:gson:1.7.1'
|
||||
providedCompile 'org.apache.commons:commons-lang3:3.2'
|
||||
|
||||
compile 'org.bigbluebutton:bbb-common-message:0.0.10'
|
||||
compile 'org.bigbluebutton:bbb-common-message:0.0.11'
|
||||
}
|
||||
|
||||
test {
|
||||
|
Loading…
Reference in New Issue
Block a user