Skip to content

Commit

Permalink
fix: remove strict comparaison on domain
Browse files Browse the repository at this point in the history
  • Loading branch information
lme-axelor committed Dec 19, 2024
1 parent b2ca802 commit 55ca23f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/apiProviders/Standard/requests.helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class RequestBuilder {
}

if (domain != null && domain !== '') {
if (data._domain !== null) {
if (data._domain != null) {
data._domain += ` AND ${domain}`;
data._domainContext = {
...data._domainContext,
Expand Down

0 comments on commit 55ca23f

Please sign in to comment.