diff options
author | mathieui <mathieui@mathieui.net> | 2015-10-05 21:44:33 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2015-10-05 21:44:33 +0200 |
commit | 11d41625e2eaa70905a2398496fb02d886961d4b (patch) | |
tree | 5cc340530913e3750b2f8deffa7b718847c0b007 /src/core/commands.py | |
parent | 62491a4caad2565ab81b62eedf053569976cbfe1 (diff) | |
download | poezio-11d41625e2eaa70905a2398496fb02d886961d4b.tar.gz poezio-11d41625e2eaa70905a2398496fb02d886961d4b.tar.bz2 poezio-11d41625e2eaa70905a2398496fb02d886961d4b.tar.xz poezio-11d41625e2eaa70905a2398496fb02d886961d4b.zip |
Get rid of the muc_history_length option
It hasn’t worked for more than two years and no one complained.
Furthermore, poezio tries to be smart and request messages based on
previous activity, and not raw numbers.
Diffstat (limited to 'src/core/commands.py')
-rw-r--r-- | src/core/commands.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/core/commands.py b/src/core/commands.py index 256668d6..33e2e9df 100644 --- a/src/core/commands.py +++ b/src/core/commands.py @@ -308,7 +308,7 @@ def command_version(self, args): fixes.get_version(self.xmpp, jid, callback=callback) @command_args_parser.quoted(0, 2) -def command_join(self, args, histo_length=None): +def command_join(self, args): """ /join [room][/nick] [password] """ @@ -366,12 +366,6 @@ def command_join(self, args, histo_length=None): if room.startswith('@'): room = room[1:] - if not histo_length: - histo_length = config.get('muc_history_length') - if histo_length == -1: - histo_length = None - if histo_length is not None: - histo_length = str(histo_length) if len(args) == 2: # a password is provided password = args[1] if password is None: # try to use a saved password |