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

Commit 35de8d6d authored by Chad Brubaker's avatar Chad Brubaker
Browse files

Fix incorrect hasPerDomainConfigs check

Change-Id: Iaeedbbcc5f12475d346a77dba84b38a1d3d8d346
parent 80a73f59
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ public final class ApplicationConfig {
     */
    public boolean hasPerDomainConfigs() {
        ensureInitialized();
        return mConfigs == null || !mConfigs.isEmpty();
        return mConfigs != null && !mConfigs.isEmpty();
    }

    /**