fixed #1557. don't try to send empty message

This commit is contained in:
orignal 2020-10-11 14:02:12 -04:00
parent e2a1cd12c3
commit e21dac21c8

View file

@ -303,6 +303,7 @@ namespace tunnel
{ {
for (auto& msg : msgs) for (auto& msg : msgs)
{ {
if (!msg.data) continue;
switch (msg.deliveryType) switch (msg.deliveryType)
{ {
case eDeliveryTypeLocal: case eDeliveryTypeLocal: