Skip to content

Commit 48ac8b4

Browse files
authored
Merge branch 'master' into rating-widget
2 parents fa7cc6b + 677e69d commit 48ac8b4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
## Version 25.03.X
1+
## Version 25.03.XX
22
Fixes:
3+
- [compliance-hub] Correctly merge user history on user merge
34
- [star-rating] Fix active status checkbox in drawer
45
- [star-rating] Fix consent fields in drawer
56

6-
77
## Version 25.03.32
88
Fixes:
99
- [core] Filtering out internal events while calculating top events

plugins/compliance-hub/api/api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ const FEATURE_NAME = 'compliance_hub';
346346
var newUid = ob.newUser.uid;
347347
if (oldUid !== newUid) {
348348
return new Promise(function(resolve, reject) {
349-
common.db.collection('consent_history').update({uid: oldUid}, {'$set': {app_id: ob.app_id, uid: newUid}}, {multi: true}, function(err) {
349+
common.db.collection('consent_history').update({app_id: ob.app_id, uid: oldUid}, {'$set': { uid: newUid}}, {multi: true}, function(err) {
350350
if (err) {
351351
reject(err);
352352
return;

0 commit comments

Comments
 (0)