diff options
Diffstat (limited to 'Swift/Controllers/Chat/MUCSearchController.cpp')
| -rw-r--r-- | Swift/Controllers/Chat/MUCSearchController.cpp | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/Swift/Controllers/Chat/MUCSearchController.cpp b/Swift/Controllers/Chat/MUCSearchController.cpp index 93d2087..304de85 100644 --- a/Swift/Controllers/Chat/MUCSearchController.cpp +++ b/Swift/Controllers/Chat/MUCSearchController.cpp @@ -136,7 +136,12 @@ void MUCSearchController::handleServerItemsResponse(boost::shared_ptr<DiscoItems  		removeService(jid);  	}  	foreach (DiscoItems::Item item, items->getItems()) { -		handleAddService(item.getJID()); +		if (item.getNode().isEmpty()) { +			/* Don't look at noded items. It's possible that this will exclude some services, +			 * but I've never seen one in the wild, and it's an easy fix for not looping. +			 */ +			handleAddService(item.getJID()); +		}  	}  	refreshView();  }  | 
 Swift