Merge pull request #754 from ritzalam/fix-presentation-delete

- fix issue where deleting presentation doesn't remove the presentat…
This commit is contained in:
Richard Alam 2015-08-11 13:25:49 -04:00
commit 700ddecd43
5 changed files with 5 additions and 5 deletions

View File

@ -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"
)}

View File

@ -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"
)}

View File

@ -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

View File

@ -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);
}
}

View File

@ -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 {