Start auto-gen confs at 1000

This commit is contained in:
Bryan Ashby 2020-05-03 12:01:31 -06:00
parent 21374d6e6d
commit 7fb10418f0
No known key found for this signature in database
GPG Key ID: B49EB437951D2542
1 changed files with 2 additions and 1 deletions

View File

@ -906,7 +906,8 @@ class QWKPacketWriter extends EventEmitter {
if (this.options.mode === QWKPacketWriter.Modes.User) {
// All the rest
let confNumber = 1;
// Start at 1000 to work around what seems to be a bug with some readers
let confNumber = 1000;
const usedConfNumbers = new Set(Object.values(this.areaTagConfMap));
getAllAvailableMessageAreaTags().forEach(areaTag => {
if (this.areaTagConfMap[areaTag]) {