We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fc72230 + 686f82e commit 97511e1Copy full SHA for 97511e1
lib/Toolkit_helpers.pm
@@ -29,7 +29,7 @@ use File::Spec;
29
30
use lib '../lib';
31
32
-our $version = '2.4.4';
+our $version = '2.4.4-hf1';
33
34
sub logger {
35
my $debug = shift;
lib/VDB_obj.pm
@@ -530,7 +530,15 @@ sub getDatabaseName
530
{
531
my $self = shift;
532
logger($self->{_debug}, "Entering VDB_obj::getDatabaseName",1);
533
- return $self->{sourceConfig}->{databaseName};
+ if (defined($self->{sourceConfig})) {
534
+ if ($self->{sourceConfig} eq "NA") {
535
+ return "NA";
536
+ } else {
537
+ return $self->{sourceConfig}->{databaseName};
538
+ }
539
540
541
542
}
543
544
0 commit comments