diff --git a/src/avmodel.cpp b/src/avmodel.cpp
index d56298433dc74d65190d865fdf314ab88c23a6f0..42600a906faa162758d12f470097418ca46d1894 100644
--- a/src/avmodel.cpp
+++ b/src/avmodel.cpp
@@ -728,12 +728,7 @@ AVModelPimpl::AVModelPimpl(AVModel& linked, const CallbacksHandler& callbacksHan
 QString
 AVModelPimpl::getRecordingPath() const
 {
-#if defined(_WIN32) || defined(__APPLE__)
-    const QDir dir = linked_.getRecordPath() + "/" + recorderSavesSubdir;
-#else
     const QDir dir = authority::storage::getPath() + "/" + recorderSavesSubdir;
-#endif
-
     dir.mkpath(".");
 
     std::chrono::time_point<std::chrono::system_clock> time_now = std::chrono::system_clock::now();