From f0ffa10c863345ea3a9a301be035f78af175e17c Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 16 Nov 2017 15:30:34 -0500 Subject: use 'string' instead of '[]byte' for data --- fileactions.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fileactions.go') diff --git a/fileactions.go b/fileactions.go index d45b982..910fe5a 100644 --- a/fileactions.go +++ b/fileactions.go @@ -21,7 +21,7 @@ func (o FileModify) fiWriteFA(fiw *textproto.FIWriter) error { type FileModifyInline struct { Mode textproto.Mode Path textproto.Path - Data []byte + Data string } func (o FileModifyInline) fiWriteFA(fiw *textproto.FIWriter) error { @@ -74,7 +74,7 @@ func (o NoteModify) fiWriteFA(fiw *textproto.FIWriter) error { type NoteModifyInline struct { CommitIsh string - Data []byte + Data string } func (o NoteModifyInline) fiWriteFA(fiw *textproto.FIWriter) error { -- cgit v1.2.3