diff options
Diffstat (limited to 'src/tabs.py')
-rw-r--r-- | src/tabs.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py index da0a053e..a76489ea 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -2672,7 +2672,7 @@ class RosterInfoTab(Tab): return True def set_roster_filter_slow(self, txt): - roster.jids_filter = (jid_and_name_match_slow, txt) + roster.contact_filter = (jid_and_name_match_slow, txt) self.refresh() return False @@ -3337,6 +3337,8 @@ def diffmatch(search, string): be 'almost' found INSIDE a string. 'almost' being defined by difflib """ + if len(search) > len(string): + return False l = len(search) ratio = 0.7 for i in range(len(string) - l + 1): |