Fixed sending broadcasts

This commit is contained in:
Christian Basler 2015-06-10 01:02:03 +02:00
parent 35996019a2
commit 0566b27ce3

View File

@ -50,6 +50,12 @@ public class V5Broadcast extends V4Broadcast {
return tag;
}
@Override
public void writeBytesToSign(OutputStream out) throws IOException {
out.write(tag);
super.writeBytesToSign(out);
}
@Override
public void write(OutputStream out) throws IOException {
out.write(tag);