Luna's Archive

Results 76 comments of Luna's Archive

I agree with this, the `*status` constant reconnection, and `*perform` (because I have a trigger in my client to call perform when a specified nick comes online) can be annoying....

How is this still not fixed 9 years later? When an IRC server is down ZNC tries to reconnect every 90 seconds and spams my Pushover notifications.

You could also implement something like `buffers.pl`'s detach feature (hide buffers without activity for X time).

That's a valid concern, but what if you actually *want* to go to the hidden buffers? There are no buffer numbers shown so the number method doesn't easily work anyway...

I haven't edited SedRegex. My plugin's inFilter modifies messages received by relays to use a fake user as prefix and the message without the relay's nick prefix.

> It should make a copy and return the copy instead. That's what I meant by "modifying the message".

Er, what? How does it pass? The test checks if it equals the original unmodified message. The actual behavior I get is that the content is changed (no idea about...

``` ====================================================================== ERROR: testHistoryInFilter (test_irclib.IrcStateTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "./test/test_irclib.py", line 285, in testHistoryInFilter self.irc.addCallback(c) AttributeError: 'FakeIrc' object has no attribute 'addCallback' ``` I don't know if...

@GLolol @Mikaela I think this is how you would send the raw message: ``` JOIN #NormalChannel,#KeyedChannel x,TheKey ``` If the channel doesn't have a key, then the key you pass...