-
-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Latest version (1.3.0/1) ignores 'start' parameter (solution in text) #19
Comments
Here is a simple example of two flows. This is for running on a Pi. The idea is to look for the file "settings.js" in the /home/pi/.node-red' folder.
while
If you look at msg.config in the two debugs you will see hey are identical. The problem is in the code, it calls readdirp passing node.start which never gets updated with what's passed in from msg.payload. However clonedMsg.config.start is properly updated if the start is passed in msg.payload |
Fixed in v1.3.2 now pushed. Will be published shortly. |
The latest version of fs-lister is ignoring the 'start' parameter when it is passed into the node. In the code at line 198 this:
readdirp(path.join(node.start), options)
should be changed to this:
readdirp(path.join(clonedMsg.config.start), options)
Software and Package Versions
How is Node-RED installed? Where is uibuilder installed?
No uibuilder
NR installed per NR normally
The text was updated successfully, but these errors were encountered: