Skip to content

Commit 9100c7e

Browse files
committed
another elif -> else
1 parent 2f0572a commit 9100c7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addons/talo/utils/continuity_manager.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func handle_post_response_healthcheck(url: String, res: TaloClient.TaloClientRes
108108
# if offline mode is enabled, check if it should be disabled
109109
if Talo.health_check.get_last_status() == Talo.health_check.HealthCheckStatus.FAILED:
110110
await Talo.health_check.ping()
111-
elif not success:
111+
else:
112112
# if offline mode isn't enabled, check if it should be enabled
113113
if Talo.health_check.get_last_status() != Talo.health_check.HealthCheckStatus.FAILED:
114114
await Talo.health_check.ping()

0 commit comments

Comments
 (0)