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
@Muwak77 thanks for pointing in the right direction. 😃 There was another problem, but the resolution was fairly similar to your recommendation in #14. Expect a release with a fix soon.
The reason for this is, that Foundry 11 has a default limit in the game.documentIndex.lookup() Method.
Fixed it by changing
let entries = game.documentIndex.lookup('', {documentTypes: document_types});
to
let entries = game.documentIndex.lookup('', {documentTypes: document_types,limit:1000000});
maybe you can also
let entries = game.documentIndex.lookup('', {documentTypes: document_types,limit:0});
does the trick, but again, i hat limited time for testing :)
The text was updated successfully, but these errors were encountered: