ossobv / asterisklint

Asterisk PBX configuration syntax checker
GNU General Public License v3.0
61 stars 12 forks source link

In vg dialplan-check we get dupe message for i18n/conf and 27/31/32 #21

Closed wdoekes closed 7 years ago

wdoekes commented 7 years ago
[context]
exten => _X!,1,Set(i18n_region=default)
exten => _X!,2,Return()

[context]
exten => 27,1,Set(i18n_region=ZA)
exten => 31,1,Set(i18n_region=NL)
exten => 32,1,Set(i18n_region=BE)
exten => _X!,1,Set(i18n_region=default)
exten => _X!,2,Return()

How should we handle this? Fix VG context to drop older context if new one is found? How does Ast handle it?