Skip to content

Commit

Permalink
Fix int to ringtone method
Browse files Browse the repository at this point in the history
  • Loading branch information
AzonInc committed Oct 26, 2024
1 parent 8389c7b commit 48c1ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/tc_bus/protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ namespace esphome

ringtone = ringtone + 1;

return "Ringtone " + ringtone;
return "Ringtone " + std::to_string(ringtone);
}

} // namespace tc_bus
Expand Down

0 comments on commit 48c1ea3

Please sign in to comment.