Fix missing server timestamps.

This commit is contained in:
Matthew Chen 2018-10-05 09:20:49 -04:00
parent ad56be27c9
commit f4148edf97
1 changed files with 7 additions and 0 deletions

View File

@ -633,6 +633,13 @@ public func serializedData() throws -> Data {
writer.pop_indent()
writer.add('}')
writer.newline()
writer.add('@objc public override var description: String {')
writer.push_indent()
writer.add('return "\(proto)"')
writer.pop_indent()
writer.add('}')
writer.newline()
writer.pop_context()