Skip to content

Commit

Permalink
(cont.)
Browse files Browse the repository at this point in the history
  • Loading branch information
justparking authored and scroix committed Apr 1, 2024
1 parent b531ace commit ea2c575
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 @@ -627,7 +627,8 @@ private void persistEventArg(NodelServerEvent event, ArgInstance instance) {
*/
private void persistEventArg(NodelClientEvent remoteevent, ArgInstance instance) {
try {
File seedFile = new File(_metaRoot, remoteevent.getNodelPoint().getPoint().getReducedForMatchingName() + ".remoteevent.json");
String key = remoteevent.getName().getReducedForMatchingName();
File seedFile = new File(_metaRoot, key + ".remoteevent.json");

Stream.writeFully(seedFile, Serialisation.serialise(instance));

Expand Down

0 comments on commit ea2c575

Please sign in to comment.