diff options
author | Peter Weller <welp@gentoo.org> | 2007-01-09 23:51:13 +0000 |
---|---|---|
committer | Peter Weller <welp@gentoo.org> | 2007-01-09 23:51:13 +0000 |
commit | fbc0ecc586664113ecb5cdf3949bfa71e912942b (patch) | |
tree | 686b28c7a874f0f5a174314fdc6783a5256641ba /net-im/gajim/files | |
parent | Stable on amd64 wrt bug #158659 (diff) | |
download | gentoo-2-fbc0ecc586664113ecb5cdf3949bfa71e912942b.tar.gz gentoo-2-fbc0ecc586664113ecb5cdf3949bfa71e912942b.tar.bz2 gentoo-2-fbc0ecc586664113ecb5cdf3949bfa71e912942b.zip |
cvs removed the patch this time...
(Portage version: 2.1.1-r2)
Diffstat (limited to 'net-im/gajim/files')
-rw-r--r-- | net-im/gajim/files/gajim_0.9_muc_disconnect.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/net-im/gajim/files/gajim_0.9_muc_disconnect.patch b/net-im/gajim/files/gajim_0.9_muc_disconnect.patch deleted file mode 100644 index 078de2cc7d18..000000000000 --- a/net-im/gajim/files/gajim_0.9_muc_disconnect.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- gajim-0.9/src/common/connection.py.old (revision 4843) -+++ gajim-0.9/src/common/connection.py (revision 4844) -@@ -378,5 +378,5 @@ - self.dispatch('GC_MSG', (frm, msgtxt, tim)) - if self.name not in no_log_for and not\ -- int(float(time.mktime(tim))) <= self.last_history_line[jid][0]: -+ int(float(time.mktime(tim))) <= self.last_history_line[jid]: - gajim.logger.write('gc_msg', frm, msgtxt, tim = tim) - elif mtype == 'chat': # it's type 'chat' -@@ -2204,5 +2204,8 @@ - #last date/time in history to avoid duplicate - jid='%s@%s' % (room, server) -- self.last_history_line[jid]= gajim.logger.get_last_date_that_has_logs(jid) -+ last_log = gajim.logger.get_last_date_that_has_logs(jid) -+ if not last_log: -+ last_log = 0 -+ self.last_history_line[jid]= last_log - - def send_gc_message(self, jid, msg): - |