Squish errors in GetCosts

This commit is contained in:
Casper Warden
2023-11-16 23:40:33 +00:00
parent e5d9d162da
commit b34bf6590c
2 changed files with 37 additions and 30 deletions

View File

@@ -390,6 +390,8 @@ export class ObjectResolver
}
const that = this;
const getCosts = async function(objIDs: UUID[]): Promise<void>
{
try
{
if (!that.region)
{
@@ -428,7 +430,12 @@ export class ObjectResolver
}
}
catch (error)
{}
{
}
}
}
catch (error)
{
}
};

View File

@@ -1,6 +1,6 @@
{
"name": "@caspertech/node-metaverse",
"version": "0.6.12",
"version": "0.6.14",
"description": "A node.js interface for Second Life.",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",