Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit fbeb58c8 authored by tobiasKaminsky's avatar tobiasKaminsky
Browse files

changes after CR

parent 4e301f19
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -227,8 +227,7 @@ public class WebdavEntry {
            // NC mount-type property <nc:mount-type>
            prop = propSet.get(EXTENDED_PROPERTY_MOUNT_TYPE, Namespace.getNamespace(NAMESPACE_NC));
            if (prop != null) {
                String mountTypeValue = (String) prop.getValue();
                if ("external".equals(mountTypeValue)) {
                if ("external".equals(prop.getValue())) {
                    mMountType = MountType.EXTERNAL;
                } else {
                    mMountType = MountType.INTERNAL;
+1 −1
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@ public class RemoteFile implements Parcelable, Serializable {
    private long mSize;
    private boolean mIsFavorite;
    private boolean mIsEncrypted;
    WebdavEntry.MountType mMountType;
    private WebdavEntry.MountType mMountType;

    /**
     * Getters and Setters.