diff options
author | Christopher Burger <burgerc@freeside.biz> | 2019-01-29 14:40:26 -0500 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2019-01-29 14:40:26 -0500 |
commit | a7a669aa8b959519fe5fa088c7efe05eadbcc845 (patch) | |
tree | 8d9221a53d5b09fa2ced632ebf8de584597633c4 | |
parent | 6315dc498f46f00601d99f899c33205b0315c929 (diff) |
rt# 78356 - fix v3 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 4397a266e..56c61187b 100644 --- a/FS/FS/part_export/saisei.pm +++ b/FS/FS/part_export/saisei.pm @@ -344,7 +344,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}; } |