Open xPaw opened 3 months ago
On inventory page, m_rgAssets
holds only basic info where the bulk of the data is inside description
. On the market page, m_rgAssets
contains everything directly and there the description
is empty. It's likely possible to remove this merging entirely, but then all uses need to be checked as the properties are likely under description
.
I've noticed some code already does this, like so:
Yeah, I think it's possible to disable merging, but I think all usages need to be well checked, I think the inventory stuff is pretty easy to fix as it's mostly under the description
.
This:
https://github.com/Nuklon/Steam-Economy-Enhancer/blob/8f90b9950c7ab482a73f7c52348545ff747db4eb/code.user.js#L2215-L2216
I was writing some code for steamdb extension, and assumed the properties I saw on the
item
were present, but I should have been looking atitem.description
instead.Is this merging actually needed?