Skip to content

Commit bbba628

Browse files
author
FusionAuth Automation
committed
Sync from monorepo d86c9f8eadc8
1 parent 140d590 commit bbba628

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/io/fusionauth/domain/connector/ConnectorPolicy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public ConnectorPolicy(ConnectorPolicy other) {
4242
this.migrate = other.migrate;
4343
this.connectorId = other.connectorId;
4444
this.data.putAll(other.data);
45-
this.domains.addAll(other.domains);
45+
this.domains = new HashSet<>(other.domains);
4646
}
4747

4848
@Override

0 commit comments

Comments
 (0)