mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-27 13:09:23 +01:00
networks.remote: properly error if the target service is not available on the target network
Closes #554.
This commit is contained in:
parent
f1b3d8d0ad
commit
613e6412a2
@ -113,6 +113,10 @@ def remote(irc, source, args):
|
|||||||
irc.error('Network %r is not connected.' % netname)
|
irc.error('Network %r is not connected.' % netname)
|
||||||
REMOTE_IN_USE.clear()
|
REMOTE_IN_USE.clear()
|
||||||
return
|
return
|
||||||
|
elif not world.services[args.service].uids.get(netname):
|
||||||
|
irc.error('The requested service %r is not available on %r.' % (args.service, netname))
|
||||||
|
REMOTE_IN_USE.clear()
|
||||||
|
return
|
||||||
|
|
||||||
# Force remoteirc.called_in to something private in order to prevent
|
# Force remoteirc.called_in to something private in order to prevent
|
||||||
# accidental information leakage from replies.
|
# accidental information leakage from replies.
|
||||||
|
Loading…
Reference in New Issue
Block a user