mirror of
https://github.com/RetroShare/RetroShare.git
synced 2026-01-04 01:55:51 -05:00
Fix wrong filtering condition
This commit is contained in:
parent
ed64bfe974
commit
6d3f44dfb2
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ void SecurityIpItem::setup()
|
|||
{
|
||||
// Filter events to only update relevant items.
|
||||
auto fe = dynamic_cast<const RsFriendListEvent*>(e.get());
|
||||
if(fe && fe->mSslId != mSslId)
|
||||
if(!fe || fe->mSslId != mSslId)
|
||||
return;
|
||||
updateItem();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue