Make offline gives work in SQLite standalones
parent
48e87b6448
commit
16a6d60a21
|
@ -295,7 +295,15 @@ namespace OpenSim.Data.SQLite
|
||||||
|
|
||||||
fillItemRow(inventoryRow, item);
|
fillItemRow(inventoryRow, item);
|
||||||
}
|
}
|
||||||
|
|
||||||
invItemsDa.Update(ds, "inventoryitems");
|
invItemsDa.Update(ds, "inventoryitems");
|
||||||
|
|
||||||
|
DataTable inventoryFolderTable = ds.Tables["inventoryfolders"];
|
||||||
|
|
||||||
|
inventoryRow = inventoryFolderTable.Rows.Find(Util.ToRawUuidString(item.Folder));
|
||||||
|
inventoryRow["version"] = (int)inventoryRow["version"] + 1;
|
||||||
|
|
||||||
|
invFoldersDa.Update(ds, "inventoryfolders");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue