From 4d105f7f9e19a6f36150c91cbba0a343d2b4f5ed Mon Sep 17 00:00:00 2001 From: Rob Swindell <rob@synchro.net> Date: Wed, 26 May 2021 19:32:04 -0700 Subject: [PATCH] Change the max BBS name length from 40 to 30. 40 was causing a lot of cosmetic issues in sbbslist.js (for 80col terminals). This is a compromise (not reducing to the old limit of 25 chars at least). :-) --- exec/load/sbbslist_lib.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/load/sbbslist_lib.js b/exec/load/sbbslist_lib.js index 390cf8e37b..44517f9823 100644 --- a/exec/load/sbbslist_lib.js +++ b/exec/load/sbbslist_lib.js @@ -13,7 +13,7 @@ var sort_property = 'name'; // These max lengths are derived from the bbs_t structure definition in xtrn/sbl/sbldefs.h: const max_len = { - name: 40, /* Synchronet allows 40, I think this restricted by 25-char QWK msg subjs in sbldefs.h */ + name: 30, /* Synchronet allows 40, I think this restricted by 25-char QWK msg subjs in sbldefs.h */ phone_number: 25, /* only the first 12 chars are backwards compatible with SBL v3 */ location: 30, sysop_name: 25, -- GitLab