From c288f91d875c8a62b5e1de317a2ce24494af6f67 Mon Sep 17 00:00:00 2001 From: masensio Date: Mon, 5 Oct 2015 15:17:39 +0200 Subject: [PATCH] Add new attribute to OCFile to know if this file is shared with users/groups --- src/com/owncloud/android/datamodel/OCFile.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/com/owncloud/android/datamodel/OCFile.java b/src/com/owncloud/android/datamodel/OCFile.java index 4b689860..8c7101bb 100644 --- a/src/com/owncloud/android/datamodel/OCFile.java +++ b/src/com/owncloud/android/datamodel/OCFile.java @@ -75,6 +75,7 @@ public class OCFile implements Parcelable, Comparable { private boolean mIsDownloading; private String mEtagInConflict; // Save file etag in the server, when there is a conflict. No conflict = null + private boolean mShareWithUser; @@ -603,4 +604,5 @@ public class OCFile implements Parcelable, Comparable { public void setShareWithUser(boolean shareWithUser) { this.mShareWithUser = shareWithUser; } + } -- 2.11.0