From 38b9834261eda606231e70ef684bd007dcb0fbef Mon Sep 17 00:00:00 2001 From: Scott Powell Date: Thu, 13 Mar 2025 13:32:46 +1100 Subject: [PATCH] * missing param --- src/helpers/BaseChatMesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/BaseChatMesh.cpp b/src/helpers/BaseChatMesh.cpp index f49c5364..99fd942a 100644 --- a/src/helpers/BaseChatMesh.cpp +++ b/src/helpers/BaseChatMesh.cpp @@ -631,7 +631,7 @@ int BaseChatMesh::findChannelIdx(const mesh::GroupChannel& ch) { return -1; // not found } #else -ChannelDetails* BaseChatMesh::addChannel(const char* psk_base64) { +ChannelDetails* BaseChatMesh::addChannel(const char* name, const char* psk_base64) { return NULL; // not supported } bool BaseChatMesh::getChannel(int idx, ChannelDetails& dest) {