mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 13:59:39 +00:00
Merge pull request #8389 from overleaf/ab-fix-analytics-enabled-flag
Skip persisting assignment when analyticsEnabled is turned off GitOrigin-RevId: e22b2cc29a5741ad90743ebaf5eb2c91cca0a2f5
This commit is contained in:
parent
a2532ef968
commit
ad3eb0bfcc
1 changed files with 6 additions and 4 deletions
|
@ -192,10 +192,12 @@ async function _getAssignment(
|
|||
phase,
|
||||
versionNumber,
|
||||
}
|
||||
if (sync === true) {
|
||||
await _updateVariantAssignment(assignmentConfig)
|
||||
} else {
|
||||
_updateVariantAssignment(assignmentConfig)
|
||||
if (currentVersion.analyticsEnabled) {
|
||||
if (sync === true) {
|
||||
await _updateVariantAssignment(assignmentConfig)
|
||||
} else {
|
||||
_updateVariantAssignment(assignmentConfig)
|
||||
}
|
||||
}
|
||||
return _makeAssignment(splitTest, selectedVariantName, currentVersion)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue