don't want a fatal error when we can't fetch the name for a queue...
[freeside.git] / FS / FS / TicketSystem / RT_External.pm
index dda835c..ea9c2b5 100644 (file)
@@ -270,7 +270,8 @@ sub queue {
   my $sth = $dbh->prepare($sql) or die $dbh->errstr. " preparing $sql";
   $sth->execute($queueid)       or die $sth->errstr. " executing $sql";
 
-  $sth->fetchrow_arrayref->[0];
+  my $rows = $sth->fetchrow_arrayref;
+  $rows ? $rows->[0] : '';
 
 }