Index: src/shared/Communication.cpp |
=================================================================== |
--- a/src/shared/Communication.cpp |
+++ b/src/shared/Communication.cpp |
@@ -157,8 +157,6 @@ |
{ |
DWORD bytesWritten; |
std::string data = message.Get(); |
- if (!data.length()) |
- return; |
if (!WriteFile(pipe, data.c_str(), data.length(), &bytesWritten, 0)) |
throw std::runtime_error("Failed to write to pipe"); |
} |