Added missing breaks to p3GxsChannels::notifyChanges.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8477 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2015-06-15 21:44:22 +00:00
parent b6e0f7c5a4
commit 8cbbf61755

View File

@ -217,6 +217,7 @@ void p3GxsChannels::notifyChanges(std::vector<RsGxsNotify *> &changes)
{
notify->AddFeedItem(RS_FEED_ITEM_CHANNEL_NEW, git->toStdString());
}
break;
}
case RsGxsNotify::TYPE_PUBLISHKEY:
@ -228,6 +229,7 @@ void p3GxsChannels::notifyChanges(std::vector<RsGxsNotify *> &changes)
{
notify->AddFeedItem(RS_FEED_ITEM_CHANNEL_PUBLISHKEY, git->toStdString());
}
break;
}
}
}