Skip to content

Commit c60a82a

Browse files
Fix compilation issue
1 parent 775191b commit c60a82a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/room.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ bool Room::connect(const std::string& url, const std::string& token, const RoomO
127127

128128
FfiClient::ListenerId listenerId = 0;
129129
try {
130-
listenerId = FfiClient::instance().addListener([this](const proto::FfiEvent& e) { OnEvent(e); });
130+
listenerId = FfiClient::instance().addListener([this](const proto::FfiEvent& e) { onEvent(e); });
131131
{
132132
const std::scoped_lock<std::mutex> g(lock_);
133133
listener_id_ = listenerId;

0 commit comments

Comments
 (0)