diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2019-01-29 17:11:50 -0500 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2019-01-29 17:11:50 -0500 |
| commit | bc37eb128d35f1f458e78efa88c5c002e9de5490 (patch) | |
| tree | 937c71c5e1badf50d25c9553e127be44df236822 | |
| parent | c4d9dcee179e841480ac130df4637c07be756412 (diff) | |
RT# 78356 - fix sector issue
| -rw-r--r-- | FS/FS/part_export/saisei.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_export/saisei.pm b/FS/FS/part_export/saisei.pm index f409046a5..3ecef6e59 100644 --- a/FS/FS/part_export/saisei.pm +++ b/FS/FS/part_export/saisei.pm @@ -356,7 +356,7 @@ sub export_tower_sector { 'sector_downrate_limit' => $tower_sector->{Hash}->{down_rate_limit}, 'modify_existing' => '1', # modify an existing access point with this info }; - my $sector_access_point = process_sector($self, $sector_opt); + my $sector_access_point = process_sector($self, $sector_opt) unless ($sector_name eq "_default"); return $sector_access_point if $sector_access_point->{error}; } |
