From aa5c03e8be28b2100ed0f7ae5f6f39a636a17000 Mon Sep 17 00:00:00 2001 From: itwrx Date: Sat, 5 Aug 2023 07:30:01 -0500 Subject: [PATCH] clarify status msg when no routines were run. --- views/routine_list.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/routine_list.nim b/views/routine_list.nim index b08b176..301c8f2 100644 --- a/views/routine_list.nim +++ b/views/routine_list.nim @@ -93,7 +93,7 @@ proc rsyncThread(list: RoutineListState) {.thread.} = for err in rsyncErrors: logger.log(lvlError, err) elif routineRunCount == 0: - list.runStatus = "Meh. No Bkup Routines were run." + list.runStatus = "No Bkup Routines were enabled. None were run." else: list.runStatus = "Bkup Complete!"