Skip to content
Snippets Groups Projects
Commit 08fd6254 authored by Alexandre Lision's avatar Alexandre Lision
Browse files

record path: fix path send to daemon for OSX

QUrl string was not recognized by the daemon (file:///)

Refs #66840
parent 6ee8d1c4
No related branches found
No related tags found
No related merge requests found
......@@ -212,7 +212,7 @@ bool Audio::Settings::isCaptureMuted() const
void Audio::Settings::setRecordPath(const QUrl& path)
{
ConfigurationManagerInterface& configurationManager = DBus::ConfigurationManager::instance();
configurationManager.setRecordPath(path.toString());
configurationManager.setRecordPath(path.path());
}
///Return the path where recordings are going to be saved
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment