File tree 3 files changed +12
-2
lines changed
3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 2.4.24.1
2
+
3
+ ### Changes
4
+ - fix for dx_get_js_snapshots preventing crash
5
+
1
6
## 2.4.24
2
7
3
8
### Added
Original file line number Diff line number Diff line change 237
237
} else {
238
238
$snapsize = $snapshot_sizes {$snapref };
239
239
}
240
- $parentname = $databases -> getDB($snapshots -> getSnapshotContainer($snapref ))-> getName();
240
+ my $parentdbobj = $databases -> getDB($snapshots -> getSnapshotContainer($snapref ));
241
+ if (defined ($parentdbobj )) {
242
+ $parentname = $parentdbobj -> getName();
243
+ } else {
244
+ $parentname = ' N/A' ;
245
+ }
241
246
}
242
247
243
248
if (defined ($operation_for_conttf )) {
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ use File::Spec;
29
29
30
30
use lib ' ../lib' ;
31
31
32
- our $version = ' 2.4.24' ;
32
+ our $version = ' 2.4.24.1 ' ;
33
33
34
34
my $tz = new Date::Manip::TZ;
35
35
my $dt = new Date::Manip::Date;
You can’t perform that action at this time.
0 commit comments