We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6c9f49c + 4596e80 commit 9508a5dCopy full SHA for 9508a5d
1 file changed
library/src/main/java/com/owncloud/android/lib/resources/shares/OCShare.kt
@@ -150,6 +150,7 @@ class OCShare :
150
remoteId = source.readLong()
151
shareLink = source.readString()
152
isPasswordProtected = source.readInt() == 1
153
+ note = source.readString()
154
isHideFileDownload = source.readInt() == 1
155
label = source.readString()
156
isHasPreview = source.readInt() == 1
@@ -181,6 +182,7 @@ class OCShare :
181
182
dest.writeLong(remoteId)
183
dest.writeString(shareLink)
184
dest.writeInt(if (isPasswordProtected) 1 else 0)
185
+ dest.writeString(note)
186
dest.writeInt(if (isHideFileDownload) 1 else 0)
187
dest.writeString(label)
188
dest.writeInt(if (isHasPreview) 1 else 0)
0 commit comments