Bug 808994 - B2G SMS: Expose the strict7BitEncoding setting through the setting API. r=vicamo

This commit is contained in:
Jose Antonio Olivera Ortega 2012-11-07 18:51:40 +01:00
parent a1b76d0ab6
commit f185712963

View File

@ -131,6 +131,11 @@ SettingsListener.observe('language.current', 'en-US', function(value) {
}
});
});
SettingsListener.observe('ril.sms.strict7BitEncoding.enabled', false,
function(value) {
Services.prefs.setBoolPref('dom.sms.strict7BitEncoding', value);
});
})();
//=================== DeviceInfo ====================