Fix enable delete on login

This commit is contained in:
Deon George
2020-07-05 22:02:06 +10:00
parent a713113df3
commit 6139db24d3
2 changed files with 13 additions and 11 deletions

View File

@@ -260,11 +260,11 @@ Frame.prototype.parse = function(text) {
f = 39;
b = 49;
// Forground Color
// Forground Color
} else if (csi[num] >= 30 && csi[num] <= 39) {
f = csi[num];
// Background Color
// Background Color
} else if (csi[num] >= 40 && csi[num] <= 49) {
b = num;
}
@@ -352,6 +352,7 @@ Frame.prototype.parse = function(text) {
this.frame_fields.push({
ftype: fieldtype,
flength: fieldlen,
fchar: fieldchar,
r: r,
c: c,
attribute: {i:i,f:f,b:b},