always begin a new message if the flag says so

This commit is contained in:
Jakob Ketterl 2020-04-21 18:11:07 +02:00
parent aa4362fe9f
commit 681a583711
1 changed files with 5 additions and 1 deletions

View File

@ -100,7 +100,11 @@ Js8Threader.prototype.findThread = function(freq) {
};
Js8Threader.prototype.pushMessage = function(message) {
var thread = this.findThread(message.freq);
var thread;
// only look for exising threads if the message is not a starting message
if ((message.thread_type & 1) === 0) {
thread = this.findThread(message.freq);
}
if (!thread) {
var line = $("<tr></tr>");
this.tbody.append(line);