empty array list for tags

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2023-05-03 13:22:20 +02:00 committed by Andy Scherzinger
parent 8a2d2c147f
commit 3ab8cc3d17
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -39,6 +39,7 @@ import com.owncloud.android.lib.resources.shares.ShareeUser;
import com.owncloud.android.utils.MimeType;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import androidx.annotation.NonNull;
@ -114,7 +115,7 @@ public class OCFile implements Parcelable, Comparable<OCFile>, ServerFileInterfa
private String lockToken;
@Nullable
private ImageDimension imageDimension;
private List<String> tags;
private List<String> tags = new ArrayList<>();
/**
* URI to the local path of the file contents, if stored in the device; cached after first call to {@link