Merge pull request #2594 from Budibase/fix/2593

Fixing issue with multi-tenancy (upgrade from single tenancy)
This commit is contained in:
Michael Drury 2021-09-13 12:20:07 +01:00 committed by GitHub
commit 068760ab88
1 changed files with 3 additions and 0 deletions

View File

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