You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem seems to be in foundryvtt-cli/lib/package.mjs line 414, where it is going through each item in the effects array. It is recursively calling the apply function, but that assumes the first entry is a document. In fact, in the case of an effect, that first entry is a string, not an object. So, it subsequently fails when trying to find the "_key" element.
The text was updated successfully, but these errors were encountered:
When attempting to perform a pack operation on a document that includes active effects, the pack operation aborts with an error. See sample here:
The offending document is attached here:
arrow__heavy_bodkin_P3LMGDmP8tYLEbAb.json
The problem seems to be in
foundryvtt-cli/lib/package.mjs
line 414, where it is going through each item in the effects array. It is recursively calling theapply
function, but that assumes the first entry is a document. In fact, in the case of an effect, that first entry is a string, not an object. So, it subsequently fails when trying to find the "_key" element.The text was updated successfully, but these errors were encountered: