sm8450-common: qcril_database: Add migration to disable redir_party_num
Caused incoming caller number not being parsed correctly by Phone app on VoLTE and VoWiFi. No idea why Xiaomi enabled this ancient prop. Co-authored-by: Andrzej Perczak <linux@andrzejperczak.com> Change-Id: I5a9c30c3f0e42c7816d3dc7eebb73e97cdc0fed8
This commit is contained in:
8
qcril_database/config/15.1_config.sql
Normal file
8
qcril_database/config/15.1_config.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
/*
|
||||
Copyright (C) 2024 The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
CREATE TABLE IF NOT EXISTS qcril_properties_table (property TEXT PRIMARY KEY NOT NULL, def_val TEXT, value TEXT);
|
||||
INSERT OR REPLACE INTO qcril_properties_table(property, def_val) VALUES('qcrildb_version',15.1);
|
||||
UPDATE qcril_properties_table SET def_val="false" WHERE property="persist.vendor.radio.redir_party_num";
|
Reference in New Issue
Block a user