Commit 10a9ba09 authored by Doron Somech's avatar Doron Somech Committed by GitHub

Merge pull request #2593 from ilovexyz/dev

fix bug: #2592 dish client does not resend subscriptions to radio server after radio server restart
parents 99805931 af598f2e
......@@ -521,7 +521,7 @@ void zmq::session_base_t::reconnect ()
// For subscriber sockets we hiccup the inbound pipe, which will cause
// the socket object to resend all the subscriptions.
if (pipe && (options.type == ZMQ_SUB || options.type == ZMQ_XSUB))
if (pipe && (options.type == ZMQ_SUB || options.type == ZMQ_XSUB || options.type == ZMQ_DISH))
pipe->hiccup ();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment