Frames received via FTN packets, tags are not set, so we'll use the 'to' user
This commit is contained in:
parent
0625691ae5
commit
dd1fef6f98
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -32,6 +32,10 @@ switch (ext) {
|
||||
}
|
||||
|
||||
var page = new Page();
|
||||
page.get(new PageObject(frame,index));
|
||||
page.import(file,ext);
|
||||
page.save();
|
||||
if (page.get(new PageObject(frame,index))) {
|
||||
page.import(file,ext);
|
||||
page.save();
|
||||
|
||||
} else {
|
||||
throw new Error('Page '+frame+index+' doesnt exist?');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user