From 8af7b7a7ad2d8c6564dfbcc3803b4d9ce672a1c5 Mon Sep 17 00:00:00 2001 From: rasul Date: Sat, 4 Apr 2020 15:14:31 -0500 Subject: [PATCH] Add a couple newlines after the quit message --- src/command/dispatch/quit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command/dispatch/quit.rs b/src/command/dispatch/quit.rs index 23956b8..7f1e1b2 100644 --- a/src/command/dispatch/quit.rs +++ b/src/command/dispatch/quit.rs @@ -6,6 +6,6 @@ use crate::queue::SendQueue; impl Command { pub fn dispatch_quit(&self, _: String, token: Token, _: &mut Db) -> SendQueue { - SendQueue(vec![(token, "Goodbye".into(), false)].into()) + SendQueue(vec![(token, "Goodbye\n\n".into(), false)].into()) } }