From 8ef464e21ee6be0de2c5caec215377d229bf7d29 Mon Sep 17 00:00:00 2001 From: Phenom Date: Sat, 13 Mar 2021 13:05:07 +0100 Subject: [PATCH] Fix Remove bad RS_ERR in FriendListModel --- retroshare-gui/src/gui/common/FriendListModel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/retroshare-gui/src/gui/common/FriendListModel.cpp b/retroshare-gui/src/gui/common/FriendListModel.cpp index a2ae9052d..9d2bfa50b 100644 --- a/retroshare-gui/src/gui/common/FriendListModel.cpp +++ b/retroshare-gui/src/gui/common/FriendListModel.cpp @@ -236,7 +236,8 @@ RsFriendListModel::EntryIndex RsFriendListModel::EntryIndex::parent() const i.node_index = UNDEFINED_NODE_INDEX_VALUE; break; case ENTRY_TYPE_UNKNOWN: - RS_ERR("Unknown Entry type for parent."); + //Can be when request root index. + break; } return i;