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

Commit 293afca4 authored by Becca Hughes's avatar Becca Hughes
Browse files

Fix build due to missing ref

Change-Id: I7c59c307d0004d7190ebee3d9d77e68981262789
Test: treehugger
Bug: 277075377
(cherry picked from commit 4393a8d0)
parent 52e910e0
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -96,6 +96,8 @@ public final class CredentialManagerService
    private static final String PERMISSION_DENIED_ERROR = "permission_denied";
    private static final String PERMISSION_DENIED_WRITE_SECURE_SETTINGS_ERROR =
            "Caller is missing WRITE_SECURE_SETTINGS permission";
    private static final String DEVICE_CONFIG_ENABLE_CREDENTIAL_MANAGER =
            "enable_credential_manager";

    private final Context mContext;

@@ -790,7 +792,7 @@ public final class CredentialManagerService
            try {
                return DeviceConfig.getBoolean(
                        DeviceConfig.NAMESPACE_CREDENTIAL,
                        CredentialManager.DEVICE_CONFIG_ENABLE_CREDENTIAL_MANAGER,
                        DEVICE_CONFIG_ENABLE_CREDENTIAL_MANAGER,
                        false);
            } finally {
                Binder.restoreCallingIdentity(origId);