From 1e84b586ce739edb59d8fb4e2a7dec9f917ec539 Mon Sep 17 00:00:00 2001 From: Dimas Restu H Date: Wed, 25 Oct 2023 09:43:25 +0700 Subject: [PATCH] update fix missing white space in pair agent name format --- pkg/whatsapp/whatsapp.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/whatsapp/whatsapp.go b/pkg/whatsapp/whatsapp.go index b2c78fa..ccd752b 100644 --- a/pkg/whatsapp/whatsapp.go +++ b/pkg/whatsapp/whatsapp.go @@ -191,13 +191,13 @@ func WhatsAppGetPairName(agentType string) string { switch runtime.GOOS { case "windows": - return prefix + "(Windows)" + return prefix + " (Windows)" case "darwin": - return prefix + "(macOS)" + return prefix + " (macOS)" case "linux": - return prefix + "(Linux)" + return prefix + " (Linux)" default: - return prefix + "(" + WhatsAppUserAgentName + ")" + return prefix + " (" + WhatsAppUserAgentName + ")" } }