chore: set HWIDProtectEnabled so trading post can be used (#1182)
Some checks failed
Build / build (20) (push) Has been cancelled
Build / build (18) (push) Has been cancelled
Build / build (22) (push) Has been cancelled
Build Docker image / docker (push) Has been cancelled

Reviewed-on: #1182
This commit is contained in:
Sainan 2025-03-15 03:21:26 -07:00
parent 0facdd1af9
commit 114e175efb

View File

@ -228,6 +228,9 @@ export const getInventoryResponse = async (
// Omitting this field so opening the navigation resyncs the inventory which is more desirable for typical usage. // Omitting this field so opening the navigation resyncs the inventory which is more desirable for typical usage.
//inventoryResponse.LastInventorySync = toOid(new Types.ObjectId()); //inventoryResponse.LastInventorySync = toOid(new Types.ObjectId());
// Set 2FA enabled so trading post can be used
inventoryResponse.HWIDProtectEnabled = true;
return inventoryResponse; return inventoryResponse;
}; };