From 2a043cc999313bb2b93b049fdf1485a32860745d Mon Sep 17 00:00:00 2001
From: Rob Swindell <rob@synchro.net>
Date: Thu, 18 Mar 2021 21:01:36 -0700
Subject: [PATCH] Max that SMB_TAGS_MAXLEN

---
 exec/load/smbdefs.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exec/load/smbdefs.js b/exec/load/smbdefs.js
index 601e0d09be..9ff36fb3b5 100644
--- a/exec/load/smbdefs.js
+++ b/exec/load/smbdefs.js
@@ -117,8 +117,8 @@ const SMB_PRIORITY_LOWEST		= 5;
 const SMB_SUMMARY			= 0x61; 	// Not currently used for messages								
 const SMB_COMMENT 			= 0x62; 	// Appear in message text, before body
 const SMB_TAGS				= 0x69; 	// Tags (ala hashtags) for a message
+const SMB_TAGS_MAXLEN		= 60;		// Tags strings are limited to this total length
 const SMB_TAG_DELIMITER		= ' ';		// Tags are space-separated
-const SMB_TAG_MAXLEN		= 60;		// Tags strings are limited to this total length
 const SMB_POLL_ANSWER		= 0xe0;		// One poll answer (the subject is the question)
 
 const FIDOCTRL     			= 0xa0;
-- 
GitLab