Skip to content

Commit 85c6561

Browse files
authored
always have an config object (#371)
Fixes: #370
1 parent 06a6a14 commit 85c6561

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/Core/Main.vala

+7-5
Original file line numberDiff line numberDiff line change
@@ -3202,7 +3202,7 @@ public class Main : GLib.Object{
32023202
else{
32033203
// retain values for next run
32043204
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);
32063206
}
32073207

32083208
config.set_string_member("do_first_run", false.to_string());
@@ -3298,8 +3298,10 @@ public class Main : GLib.Object{
32983298
} catch (Error e) {
32993299
log_error (e.message);
33003300
}
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();
33033305

33043306
bool do_first_run = json_get_bool(config, "do_first_run", false); // false as default
33053307

@@ -3308,7 +3310,7 @@ public class Main : GLib.Object{
33083310
if (do_first_run){
33093311
set_first_run_flag();
33103312
}
3311-
3313+
33123314
if (config.has_member("include_btrfs_home")){
33133315
include_btrfs_home_for_backup = json_get_bool(config, "include_btrfs_home", include_btrfs_home_for_backup);
33143316
}
@@ -3325,7 +3327,7 @@ public class Main : GLib.Object{
33253327

33263328
backup_uuid = json_get_string(config,"backup_device_uuid", backup_uuid);
33273329
backup_parent_uuid = json_get_string(config,"parent_device_uuid", backup_parent_uuid);
3328-
3330+
33293331
this.schedule_monthly = json_get_bool(config,"schedule_monthly",schedule_monthly);
33303332
this.schedule_weekly = json_get_bool(config,"schedule_weekly",schedule_weekly);
33313333
this.schedule_daily = json_get_bool(config,"schedule_daily",schedule_daily);

0 commit comments

Comments
 (0)