Merge branch 'current' into beta

This commit is contained in:
Jesse Hills 2021-10-21 07:31:46 +13:00
commit 5c178669d7
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

View File

@ -188,7 +188,7 @@ using ``message`` (``const char *``), ``level`` (``int``) and ``tag`` (``const c
- mqtt.publish:
topic: some/topic
payload: !lambda |-
return "Triggered on_message with level " + std::to_string(level) + ", tag " + tag + " and message " + message;
return "Triggered on_message with level " + to_string(level) + ", tag " + tag + " and message " + message;
.. note::