Skip to content

Commit

Permalink
fix semicolon (#27)
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weber <stefan.weber93@googlemail.com>
  • Loading branch information
Cybnon committed Sep 22, 2023
1 parent 7a6a9eb commit 202450c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasmota/tasmota_xdrv_driver/xdrv_129_rddl_network.ino
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ bool hasMachineBeenAttested()

int httpResponseCode = http.GET();

return (httpResponseCode == 200)
return (httpResponseCode == 200);
}

char* create_transaction( void* anyMsg, char* tokenAmount )
Expand Down

0 comments on commit 202450c

Please sign in to comment.