Don't log BBB shared secret

This commit is contained in:
Andrew Morgan 2021-08-05 15:57:06 +01:00
parent ba9f8827b5
commit 0a67c23b00
1 changed files with 0 additions and 3 deletions

View File

@ -362,9 +362,6 @@ export class DimensionBigBlueButtonService {
// We URL encode each value as a browser would. If we don't, our resulting checksum will not match.
const widgetQueryString = this.queryStringFromObject(queryParameters, encodeAsBrowser);
LogService.info("BigBlueButton", "Built widget string:" + widgetQueryString);
LogService.info("BigBlueButton", "Hashing:" + apiCallName + widgetQueryString + config.bigbluebutton.sharedSecret);
// Hash the api name and query parameters to get the checksum, and add it to the set of query parameters
return sha256(apiCallName + widgetQueryString + config.bigbluebutton.sharedSecret);
}