Index: sources/wifi/WifiInterface.cpp =================================================================== diff -u -r5b46bc8e4724e4ddb648f901d76bb7ec24f8b6c7 -r7f61c3b45a50145fe5c245018d481d6266166fa6 --- sources/wifi/WifiInterface.cpp (.../WifiInterface.cpp) (revision 5b46bc8e4724e4ddb648f901d76bb7ec24f8b6c7) +++ sources/wifi/WifiInterface.cpp (.../WifiInterface.cpp) (revision 7f61c3b45a50145fe5c245018d481d6266166fa6) @@ -7,7 +7,7 @@ * * \file WifiInterface.cpp * \author (last) Behrouz NematiPour - * \date (last) 10-Nov-2022 + * \date (last) 02-Feb-2023 * \author (original) Behrouz NematiPour * \date (original) 11-May-2021 * @@ -916,7 +916,7 @@ * \return true if succeeds and false otherwise */ bool WifiInterface::checkScript(QString &vScript, const QString &vShellScript) { - vScript = _scriptsFolder + vShellScript; + vScript = Storage::Scripts_Path_Name() + vShellScript; QFileInfo info(vScript); if ( ! info.exists () ) { LOG_DEBUG(QString("script %1 does not exist." ).arg(vScript)); return false; } if ( ! info.isExecutable() ) { LOG_DEBUG(QString("script %1 is not executable." ).arg(vScript)); return false; }