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

Commit 98409704 authored by Andrei Popescu's avatar Andrei Popescu
Browse files

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.
parent 624d39dd
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);
        }
    }