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

Commit b816377f authored by Andrei Popescu's avatar Andrei Popescu Committed by Android (Google) Code Review
Browse files

Merge "Fix a bug where the usage for an origin shows up as 0 in Website...

Merge "Fix a bug where the usage for an origin shows up as 0 in Website Settings when the origin uses app cache but not database."
parents 29eadcf3 98409704
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -389,8 +389,8 @@ public final class WebStorage {
        mOrigins = new HashMap<String, Origin>();
        for (String origin : tmp) {
            Origin website = new Origin(origin,
                                 nativeGetUsageForOrigin(origin),
                                 nativeGetQuotaForOrigin(origin));
                                 nativeGetQuotaForOrigin(origin),
                                 nativeGetUsageForOrigin(origin));
            mOrigins.put(origin, website);
        }
    }