mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-07 16:45:11 -04:00
Fixed config forward compatibility problem
- note to self: C++ binary file not same as C binary file git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2510 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
0b4bc0f2eb
commit
6054890725
6 changed files with 357 additions and 165 deletions
|
@ -251,8 +251,14 @@ bool p3Blogs::BlogMessageSend(BlogMsgInfo &info)
|
|||
|
||||
bool p3Blogs::BlogMessageReply(BlogMsgInfo& reply){
|
||||
|
||||
if(reply.msgIdReply.empty())
|
||||
// ensure it has a value
|
||||
if(isReply(reply)){
|
||||
std::cerr << "p3Blogs::BlogMessageReply()" << " This is not a reply " << std::endl;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
// also check that msgId exists for group
|
||||
|
||||
return BlogMessageSend(reply);
|
||||
}
|
||||
|
@ -306,6 +312,23 @@ bool p3Blogs::blogSubscribe(std::string cId, bool subscribe)
|
|||
}
|
||||
|
||||
|
||||
bool p3Blogs::deleteBlogMsg(std::string cId, std::string mId){
|
||||
return false;
|
||||
}
|
||||
|
||||
bool p3Blogs::isBlogDeleted(std::string cId){
|
||||
return false;
|
||||
}
|
||||
|
||||
bool p3Blogs::isBlogMsgDeleted(std::string cId, std::string mId){
|
||||
return false;
|
||||
}
|
||||
|
||||
bool p3Blogs::deleteBlog(std::string cId){
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
/***************************************************************************************/
|
||||
/****************** Event Feedback (Overloaded form p3distrib) *************************/
|
||||
/***************************************************************************************/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue