Browse Source

Fix for issue #2593.

pull/2594/head
mike12345567 5 years ago
parent
commit
67c07b7e38
  1. 3
      packages/auth/src/db/utils.js

3
packages/auth/src/db/utils.js

@ -67,6 +67,9 @@ function getDocParams(docType, docId = null, otherProps = {}) {
* @return {null|string} The tenant ID found within the app ID.
*/
exports.getTenantIDFromAppID = appId => {
if (!appId) {
return null
}
const split = appId.split(SEPARATOR)
const hasDev = split[1] === DocumentTypes.DEV
if ((hasDev && split.length === 3) || (!hasDev && split.length === 2)) {

Loading…
Cancel
Save