diff --git a/package-lock.json b/package-lock.json index 11d33db38..4919d223c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -73,7 +73,7 @@ "jquery-i18next": "1.2.1", "js-md5": "0.6.1", "jwt-decode": "2.2.0", - "lib-jitsi-meet": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1436.0.0+d5c46952/lib-jitsi-meet.tgz", + "lib-jitsi-meet": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1437.0.0+966fcd93/lib-jitsi-meet.tgz", "lodash": "4.17.21", "moment": "2.29.2", "moment-duration-format": "2.2.2", @@ -12132,8 +12132,8 @@ }, "node_modules/lib-jitsi-meet": { "version": "0.0.0", - "resolved": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1436.0.0+d5c46952/lib-jitsi-meet.tgz", - "integrity": "sha512-GmqtqD+6QcDI76gn8ev5zpKOuHs9afqu2MhldSGJQ31NhmCqOo3SLlQltqnkdo/x2hBd5ZAxZz2/3b2A+p+Eig==", + "resolved": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1437.0.0+966fcd93/lib-jitsi-meet.tgz", + "integrity": "sha512-kJx4bvMHLVWOj7cSNBxF6I3P0gnwjCoP2ECSiJWfun1Bi/O58tPAuz7skIot4y9fU+WpeTzuINayLCCteLIhxg==", "license": "Apache-2.0", "dependencies": { "@jitsi/js-utils": "2.0.0", @@ -29276,8 +29276,8 @@ } }, "lib-jitsi-meet": { - "version": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1436.0.0+d5c46952/lib-jitsi-meet.tgz", - "integrity": "sha512-GmqtqD+6QcDI76gn8ev5zpKOuHs9afqu2MhldSGJQ31NhmCqOo3SLlQltqnkdo/x2hBd5ZAxZz2/3b2A+p+Eig==", + "version": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1437.0.0+966fcd93/lib-jitsi-meet.tgz", + "integrity": "sha512-kJx4bvMHLVWOj7cSNBxF6I3P0gnwjCoP2ECSiJWfun1Bi/O58tPAuz7skIot4y9fU+WpeTzuINayLCCteLIhxg==", "requires": { "@jitsi/js-utils": "2.0.0", "@jitsi/logger": "2.0.0", diff --git a/package.json b/package.json index ad4d59dd6..0bde317e8 100644 --- a/package.json +++ b/package.json @@ -78,7 +78,7 @@ "jquery-i18next": "1.2.1", "js-md5": "0.6.1", "jwt-decode": "2.2.0", - "lib-jitsi-meet": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1436.0.0+d5c46952/lib-jitsi-meet.tgz", + "lib-jitsi-meet": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1437.0.0+966fcd93/lib-jitsi-meet.tgz", "lodash": "4.17.21", "moment": "2.29.2", "moment-duration-format": "2.2.2", diff --git a/resources/prosody-plugins/mod_jiconop.lua b/resources/prosody-plugins/mod_jiconop.lua index 998834047..1f6d811a9 100644 --- a/resources/prosody-plugins/mod_jiconop.lua +++ b/resources/prosody-plugins/mod_jiconop.lua @@ -17,6 +17,11 @@ if region_name_config then module:add_identity("server", "region", region_name_config); end +local release_number_config = module:get_option_string('release_number'); +if release_number_config then + module:add_identity("server", "release", release_number_config); +end + -- this is after xmpp-bind, the moment a client has resource and can be contacted module:hook("resource-bind", function (event) local session = event.session;