Skip to content

Commit

Permalink
fixup! chore(binding-http): enable eslint/strict-boolean-expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb committed Sep 22, 2023
1 parent 6077f90 commit 7c99ec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/binding-http/src/http-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ export default class HttpServer implements ProtocolServer {
form,
(tdTemplate.properties?.[propertyName] ?? {}) as PropertyElement
);
if (thing.properties[propertyName].readOnl === true) {
if (thing.properties[propertyName].readOnly === true) {
form.op = ["readproperty"];
const hform: HttpForm = form;
if (hform["htv:methodName"] === undefined) {
Expand Down

0 comments on commit 7c99ec6

Please sign in to comment.