Skip to content

Commit

Permalink
obscure bug: remote event arg wrong un/persisting behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
justparking authored and scroix committed Apr 1, 2024
1 parent e0feea9 commit b531ace
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nodel-framework/src/main/java/org/nodel/host/BaseNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,8 @@ protected void prepareRemoteEvent(final NodelClientEvent remoteEvent, SimpleName
*/
protected void addRemoteEvent(final NodelClientEvent remoteEvent) {
// seed the event with some data if it exists
String key = remoteEvent.getNodelPoint().getPoint().getReducedForMatchingName();
String key = remoteEvent.getName().getReducedForMatchingName();

File seedFile = new File(_metaRoot, key + ".remoteevent.json");

ArgInstance seed = null;
Expand Down

0 comments on commit b531ace

Please sign in to comment.