Skip to content

Commit

Permalink
Fixing property fetch (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 2, 2023
1 parent 048ecfc commit 1a8300c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Models/States/ChannelPropertiesManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public function update(
$updatedState,
Utils\ArrayHash::from([
States\Property::EXPECTED_VALUE_KEY => null,
States\Property::PENDING_KEY => null,
States\Property::PENDING_KEY => false,
]),
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Models/States/ConnectorPropertiesManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public function update(
$updatedState,
Utils\ArrayHash::from([
States\Property::EXPECTED_VALUE_KEY => null,
States\Property::PENDING_KEY => null,
States\Property::PENDING_KEY => false,
]),
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Models/States/DevicePropertiesManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public function update(
$updatedState,
Utils\ArrayHash::from([
States\Property::EXPECTED_VALUE_KEY => null,
States\Property::PENDING_KEY => null,
States\Property::PENDING_KEY => false,
]),
);
}
Expand Down

0 comments on commit 1a8300c

Please sign in to comment.