Skip to content

Commit f296730

Browse files
fixed recorder frequency bug with multivfo
1 parent b89fdba commit f296730

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc_modules/recorder/src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ class RecorderModule : public ModuleManager::Instance {
168168

169169
// Open file
170170
std::string type = (recMode == RECORDER_MODE_AUDIO) ? "audio" : "baseband";
171-
std::string vfoName = (recMode == RECORDER_MODE_AUDIO) ? gui::waterfall.selectedVFO : "";
171+
std::string vfoName = (recMode == RECORDER_MODE_AUDIO) ? selectedStreamName : "";
172172
std::string extension = ".wav";
173173
std::string expandedPath = expandString(folderSelect.path + "/" + genFileName(nameTemplate, type, vfoName) + extension);
174174
if (!writer.open(expandedPath)) {

0 commit comments

Comments
 (0)