Frames received via FTN packets, tags are not set, so we'll use the 'to' user
This commit is contained in:
@@ -971,11 +971,12 @@ function Page(debug) {
|
||||
}
|
||||
|
||||
var msg;
|
||||
// Find existing message with the page number and delete it if defined
|
||||
// Find existing message with the page number
|
||||
for(var x in headers) {
|
||||
if ((headers[x].tags === page.toString()) && (!(headers[x].attr&MSG_DELETE)) && (headers[x].from === SESSION_EXT)) {
|
||||
if ((!(headers[x].attr&MSG_DELETE)) && (headers[x].to === page.toString()) && (headers[x].from === SESSION_EXT)) {
|
||||
msg = headers[x];
|
||||
break;
|
||||
//break; @todo We'll take the last one that matches, if there are more than one.
|
||||
// @todo In the case of frames coming via FTN packets, we are not currently deleting old entries
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user