Topic: get shouldn't require capabilities, since it's a read-only operation.

This commit is contained in:
Daniel Folkinshteyn 2011-01-25 01:26:42 -05:00 committed by Valentin Lorentz
parent e8814fc07a
commit 60bbbc63ab

View File

@ -403,9 +403,6 @@ class Topic(callbacks.Plugin):
index into the topics. <channel> is only necessary if the message
isn't sent in the channel itself.
"""
if not self._checkManageCapabilities(irc, msg, channel):
capabilities = self.registryValue('requireManageCapability')
irc.errorNoCapability(capabilities, Raise=True)
topics = self._splitTopic(irc.state.getTopic(channel), channel)
irc.reply(topics[number])
get = wrap(get, ['inChannel', 'topicNumber'])