@@ -3202,7 +3202,7 @@ public class Main : GLib.Object{
3202
3202
else {
3203
3203
// retain values for next run
3204
3204
config. set_string_member(" backup_device_uuid" , backup_uuid);
3205
- config. set_string_member(" parent_device_uuid" , backup_parent_uuid);
3205
+ config. set_string_member(" parent_device_uuid" , backup_parent_uuid);
3206
3206
}
3207
3207
3208
3208
config. set_string_member(" do_first_run" , false . to_string());
@@ -3298,8 +3298,10 @@ public class Main : GLib.Object{
3298
3298
} catch (Error e) {
3299
3299
log_error (e. message);
3300
3300
}
3301
- var node = parser. get_root();
3302
- var config = node. get_object();
3301
+ Json . Node ? node = parser. get_root();
3302
+
3303
+ // make sure object is always set
3304
+ Json . Object config = node? . get_object() ?? new Json .Object ();
3303
3305
3304
3306
bool do_first_run = json_get_bool(config, " do_first_run" , false ); // false as default
3305
3307
@@ -3308,7 +3310,7 @@ public class Main : GLib.Object{
3308
3310
if (do_first_run){
3309
3311
set_first_run_flag();
3310
3312
}
3311
-
3313
+
3312
3314
if (config. has_member(" include_btrfs_home" )){
3313
3315
include_btrfs_home_for_backup = json_get_bool(config, " include_btrfs_home" , include_btrfs_home_for_backup);
3314
3316
}
@@ -3325,7 +3327,7 @@ public class Main : GLib.Object{
3325
3327
3326
3328
backup_uuid = json_get_string(config," backup_device_uuid" , backup_uuid);
3327
3329
backup_parent_uuid = json_get_string(config," parent_device_uuid" , backup_parent_uuid);
3328
-
3330
+
3329
3331
this . schedule_monthly = json_get_bool(config," schedule_monthly" ,schedule_monthly);
3330
3332
this . schedule_weekly = json_get_bool(config," schedule_weekly" ,schedule_weekly);
3331
3333
this . schedule_daily = json_get_bool(config," schedule_daily" ,schedule_daily);
0 commit comments