diff options
author | Mathieu Pasquet <mathieui@mathieui.net> | 2013-10-06 18:09:33 +0200 |
---|---|---|
committer | Mathieu Pasquet <mathieui@mathieui.net> | 2013-10-06 18:09:33 +0200 |
commit | 11c93a12a32a8d81c099dfc9f00966feeca83189 (patch) | |
tree | e9ad4c4fcd9ff2d123d3a8ceff59dcb5d879ba16 | |
parent | 8e63ad3a083232870bd1bd0d2bd45790387ad8e5 (diff) | |
download | poezio-11c93a12a32a8d81c099dfc9f00966feeca83189.tar.gz poezio-11c93a12a32a8d81c099dfc9f00966feeca83189.tar.bz2 poezio-11c93a12a32a8d81c099dfc9f00966feeca83189.tar.xz poezio-11c93a12a32a8d81c099dfc9f00966feeca83189.zip |
Fix a refresh issue in the roster
-rw-r--r-- | src/tabs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tabs.py b/src/tabs.py index c4615f0c..3d38ec2b 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -2497,6 +2497,7 @@ class RosterInfoTab(Tab): if jid in roster and roster[jid].subscription in ('to', 'both'): return self.core.information('Already subscribed.', 'Roster') roster.add(jid) + roster.modified() def command_name(self, arg): """ |