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

Unverified Commit a2bc8c57 authored by Mario Danic's avatar Mario Danic Committed by AndyScherzinger
Browse files

Add missing things

parent 5d139cb5
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -207,6 +207,14 @@ public class WebdavEntry {
        }
    }

    public boolean isFavorite() {
        return mIsFavorite;
    }

    public void setIsFavorite(boolean mIsFavorite) {
        this.mIsFavorite = mIsFavorite;
    }

    public String path() {
        return mPath;
    }
@@ -273,5 +281,6 @@ public class WebdavEntry {
        mSize = 0;
        mQuotaUsedBytes = null;
        mQuotaAvailableBytes = null;
        mIsFavorite = false;
    }
}