Skip to content

Commit ab4b510

Browse files
authored
fix: wrong copy paste in last release (#61)
1 parent 7782afe commit ab4b510

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

dist/components/proxy-middleware/rule_action_processor/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ const get_success_actions_from_action_results = (action_result_objs = []) => {
3636
};
3737
exports.get_success_actions_from_action_results = get_success_actions_from_action_results;
3838
const get_file_contents = (file_path) => {
39-
return fs_1.default.readFileSync(action.response, "utf-8");
39+
return fs_1.default.readFileSync(file_path, "utf-8");
4040
};
4141
exports.get_file_contents = get_file_contents;

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@requestly/requestly-proxy",
3-
"version": "1.3.7",
3+
"version": "1.3.8",
44
"description": "Proxy that gives superpowers to all the Requestly clients",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/components/proxy-middleware/rule_action_processor/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ export const get_success_actions_from_action_results = (
4444
};
4545

4646
export const get_file_contents = (file_path) => {
47-
return fs.readFileSync(action.response, "utf-8");
47+
return fs.readFileSync(file_path, "utf-8");
4848
}

0 commit comments

Comments
 (0)