File tree
Expand file treeCollapse file tree1 file changed
+4
-4
lines changed Expand file treeCollapse file tree1 file changed
+4
-4
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -1047,11 +1047,11 @@ class HttpRequester {
|
1047 | 1047 |
|
1048 | 1048 | fetch(url) {
|
1049 | 1049 | if (this.adapter.name === 'ajaxAdapter') {
|
1050 |
| -return makeAjaxCall(url).then(response => { |
| 1050 | +return makeAjaxCall(url).then((response) => { |
1051 | 1051 | // transform response and return
|
1052 | 1052 | });
|
1053 |
| -} else if(this.adapter.name === 'httpNodeAdapter') { |
1054 |
| -return makeHttpCall(url).then(response => { |
| 1053 | +} else if (this.adapter.name === 'httpNodeAdapter') { |
| 1054 | +return makeHttpCall(url).then((response) => { |
1055 | 1055 | // transform response and return
|
1056 | 1056 | });
|
1057 | 1057 | }
|
@@ -1097,7 +1097,7 @@ class HttpRequester {
|
1097 | 1097 | }
|
1098 | 1098 |
|
1099 | 1099 | fetch(url) {
|
1100 |
| -return this.adapter.request(url).then(response => { |
| 1100 | +return this.adapter.request(url).then((response) => { |
1101 | 1101 | // transform response and return
|
1102 | 1102 | });
|
1103 | 1103 | }
|
|
You can’t perform that action at this time.
0 commit comments