diff --git a/native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp b/native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp --- a/native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp +++ b/native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp @@ -256,6 +256,11 @@ : jsi::Value::null()); jsiThread.setProperty(rt, "repliesCount", thread.replies_count); + if (thread.avatar) { + auto avatar = jsi::String::createFromUtf8(rt, *thread.avatar); + jsiThread.setProperty(rt, "avatar", avatar); + } + jsiThreads.setValueAtIndex(rt, writeIdx++, jsiThread); } return jsiThreads;