Merge "Don't fall back to domain verification state when looking up app linkage state" into mnc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
6afdad7e88
@@ -1078,13 +1078,7 @@ final class Settings {
|
||||
}
|
||||
return INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED;
|
||||
}
|
||||
int status = (int)(ps.getDomainVerificationStatusForUser(userId) >> 32);
|
||||
if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_UNDEFINED) {
|
||||
if (ps.getIntentFilterVerificationInfo() != null) {
|
||||
status = ps.getIntentFilterVerificationInfo().getStatus();
|
||||
}
|
||||
}
|
||||
return status;
|
||||
return (int)(ps.getDomainVerificationStatusForUser(userId) >> 32);
|
||||
}
|
||||
|
||||
boolean updateIntentFilterVerificationStatusLPw(String packageName, final int status, int userId) {
|
||||
|
||||
Reference in New Issue
Block a user