Skip to content

Commit 5565f81

Browse files
committed
Fixed instance updater crash
1 parent 6af8726 commit 5565f81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/widgets/instances/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,8 +448,8 @@ def update_instance_list(instance_listbox:Gtk.ListBox, selected_instance_id:str)
448448
row_to_select = None
449449
for i, ins in enumerate(instances):
450450
row = create_instance_row(ins)
451-
row.instance.set_row(row)
452451
if row:
452+
row.instance.set_row(row)
453453
instance_listbox.append(row)
454454
if row.instance.instance_id == selected_instance_id:
455455
row_to_select = row

0 commit comments

Comments
 (0)