@magic-xpa/engine 4.900.0-dev490.121 → 4.900.0-dev490.124

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16263,7 +16263,8 @@ class Field extends FieldBase {
16263
16263
  }
16264
16264
  break;
16265
16265
  case ConstInterface.MG_ATTR_CHACHED_FLD_ID:
16266
- this.CacheTableFldIdx = NNumber.Parse(data[1]);
16266
+ if (data[0] != "")
16267
+ this.CacheTableFldIdx = NNumber.Parse(data[1]);
16267
16268
  break;
16268
16269
  case ConstInterface.MG_ATTR_LOCATE:
16269
16270
  this.Locate = new Boundary(this.getTask(), NNumber.Parse(data[1]), NNumber.Parse(data[0]), this.getType(), this.getSize(), this.CacheTableFldIdx);
@@ -20845,15 +20846,18 @@ class RemoteDataviewHeader extends DataviewHeaderBase {
20845
20846
  setAttribute(attribute, valueStr) {
20846
20847
  switch (attribute) {
20847
20848
  case ConstInterface.MG_ATTR_CACHED_TABLE:
20848
- if (TableCacheManager.Instance.TableExists(valueStr))
20849
- this._table = TableCacheManager.Instance.GetTableById(valueStr);
20850
- else {
20851
- this._table = new TableCache(valueStr);
20852
- TableCacheManager.Instance.InsertTable(this._table);
20849
+ if (valueStr != "") {
20850
+ if (TableCacheManager.Instance.TableExists(valueStr))
20851
+ this._table = TableCacheManager.Instance.GetTableById(valueStr);
20852
+ else {
20853
+ this._table = new TableCache(valueStr);
20854
+ TableCacheManager.Instance.InsertTable(this._table);
20855
+ }
20853
20856
  }
20854
20857
  break;
20855
20858
  case ConstInterface.MG_ATTR_IDENT:
20856
- this._table.SetTableIdent(valueStr);
20859
+ if (valueStr != "")
20860
+ this._table.SetTableIdent(valueStr);
20857
20861
  break;
20858
20862
  default:
20859
20863
  super.setAttribute(attribute, valueStr);
@@ -29532,7 +29536,7 @@ class CommandsTable {
29532
29536
  }
29533
29537
  }
29534
29538
 
29535
- let CurrentClientVersion = '4.900.0-dev490.121';
29539
+ let CurrentClientVersion = '4.900.0-dev490.124';
29536
29540
 
29537
29541
  class ClientManager {
29538
29542
  constructor() {