summaryrefslogtreecommitdiff
path: root/FS/FS/cust_svc.pm
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2015-12-10 01:57:22 -0800
committerIvan Kohler <ivan@freeside.biz>2015-12-10 01:57:22 -0800
commit083055aebf83987941affc4da3184dec0f27d2ae (patch)
treec1e083a47000ec86c590952aee71e219023f8998 /FS/FS/cust_svc.pm
parent6870babd1be7976dc8823c46a66254ee977c8cd1 (diff)
avoid throwing an error on unlinked services, RT#31388
Diffstat (limited to 'FS/FS/cust_svc.pm')
-rw-r--r--FS/FS/cust_svc.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_svc.pm b/FS/FS/cust_svc.pm
index 376ef02..0223f93 100644
--- a/FS/FS/cust_svc.pm
+++ b/FS/FS/cust_svc.pm
@@ -1252,7 +1252,7 @@ sub _check_provision_hold {
# check status of cust_pkg
my $cust_pkg = $self->cust_pkg;
- return '' unless $cust_pkg->status eq 'on hold';
+ return '' unless $cust_pkg && $cust_pkg->status eq 'on hold';
# check flag on this svc
# small false laziness with $self->pkg_svc