Skip to content

Commit

Permalink
fix: fixed accidental assignment of Response
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhendrickson13 committed Aug 15, 2023
1 parent 754068f commit aa395c7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pfSense-pkg-API/files/etc/inc/api/core/Response.inc
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ class Response extends Error {
$this->message = str_replace(["\"", "'"], "`", $message);
$this->status = strtolower($this->get_http_status_message($this->code));
$this->response_id = strtoupper($response_id);
$this->code = $code;
$this->data = $data;
parent::__construct($this->message, $this->code);

Expand Down

0 comments on commit aa395c7

Please sign in to comment.