From 7c4aa422b53d90f4e9a3f6a7cbb367b5d58149d2 Mon Sep 17 00:00:00 2001 From: Tan Nguyen Date: Tue, 15 Oct 2024 01:22:44 +0700 Subject: [PATCH] fix: update the flow in flowchart docs --- docs/send-notification-flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/send-notification-flow.md b/docs/send-notification-flow.md index 78f1e93..b7925d5 100644 --- a/docs/send-notification-flow.md +++ b/docs/send-notification-flow.md @@ -165,12 +165,12 @@ flowchart TD checkSettings -->|Yes| findTemplate{Find message template} checkSettings -->|No| endFlow[End flow] findTemplate -->|Exists| setMessage[Set message for notification] + sendNotification -->|Failure| log[Log error] findTemplate -->|Not Exists| log[Log error] setMessage --> checkMessage{Is message empty?} checkMessage -->|Yes| endFlow[End flow] checkMessage -->|No| sendNotification[Send notification] sendNotification -->|Success| endFlow[End flow] - sendNotification -->|Failure| log[Log error] log --> endFlow ```