Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export default class RegionSettings extends RcModule {
* @param {TabManager} params.tabManager - tabManager module instance
*/
constructor({
brand,
storage,
extensionInfo,
dialingPlan,
Expand All @@ -49,6 +50,7 @@ export default class RegionSettings extends RcModule {
...options,
actionTypes,
});
this._brand = brand;
this._storage = storage;
this._alert = alert;
this._dialingPlan = dialingPlan;
Expand Down Expand Up @@ -144,7 +146,9 @@ export default class RegionSettings extends RcModule {
))
) {
countryCode = null;
this._alertSettingsChanged();
if (this._brand.id === '1210') {
this._alertSettingsChanged();
}
}
if (!countryCode) {
const country = this.availableCountries.find(plan => (
Expand Down