Skip to content

Commit efdc4b4

Browse files
authored
Merge pull request #26 from SalesforceCommerceCloud/bugfix/httpform-lowercase
Fixed #24
2 parents 7fd3d04 + a552c3c commit efdc4b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dw/svc/LocalServiceRegistry.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class LocalServiceRegistry {
1414

1515
if (serviceId.toLowerCase().indexOf('http') > -1) {
1616
return new HTTPService(configObj);
17-
} else if (serviceId.toLowerCase().indexOf('httpForm') > -1) {
17+
} else if (serviceId.toLowerCase().indexOf('httpform') > -1) {
1818
return new HTTPFormService(configObj);
1919
} else if (serviceId.toLowerCase().indexOf('soap') > -1) {
2020
return new SOAPService(configObj);

0 commit comments

Comments
 (0)