Open mhillerstrom opened 4 years ago
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Apologies if the issue could not be resolved. FeathersJS ecosystem modules are community maintained so there may be a chance that there isn't anybody available to address the issue at the moment. For other ways to get help see here.
Performing a
app.service('tmp').getEntries()
(inherited fromfeathers-memory
) before using any command internally executingready()
will result in aTypeError
(Cannot convert undefined or null to object
). The problem resolves after first command executingready()
.The problem can easily be fixed by executing
ready()
as part ofconstructor
(alternatively in a new_setup()
). To circumvent the problem useawait app.service('tmp').ready()
as part of your application initialization.