From 6f2ed775a255bf81fbc21f439a27c5b304d8ca82 Mon Sep 17 00:00:00 2001 From: Richard Shin Date: Sat, 3 Sep 2016 18:05:09 -0700 Subject: [PATCH] Allow arbitrary bytes in types.String (#405) --- protos/types.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protos/types.proto b/protos/types.proto index 054925401..ece53bbda 100644 --- a/protos/types.proto +++ b/protos/types.proto @@ -9,7 +9,7 @@ message Long { } message String { - string data = 1; + bytes data = 1; } message Unicode {