We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c383b7d commit dcb6039Copy full SHA for dcb6039
1 file changed
Source/Processors/RecordNode/RecordNode.cpp
@@ -955,7 +955,7 @@ void RecordNode::loadCustomParametersFromXml(XmlElement* xml)
955
//Get saved record path
956
String savedPath = xml->getStringAttribute("path");
957
958
- if (!File(savedPath).exists())
+ if (savedPath == "default" || !File(savedPath).exists())
959
savedPath = CoreServices::getRecordingParentDirectory().getFullPathName();
960
961
setDataDirectory(File(savedPath));
0 commit comments