diff options
Diffstat (limited to 'src/pvs.cpp')
| -rwxr-xr-x | src/pvs.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pvs.cpp b/src/pvs.cpp index 20e9b3b..61df049 100755 --- a/src/pvs.cpp +++ b/src/pvs.cpp @@ -459,12 +459,13 @@ void PVS::setScriptPath(QString path) bool PVS::gotVNCScript() { - if (fileExists(_vncScriptPath)) + if (!_vncScriptPath.isEmpty() && fileExists(_vncScriptPath)) return true; - if (policyFileExists(_vncScriptName)) + + if (!_vncScriptName.isEmpty() && policyFileExists(_vncScriptName)) return true; - return false; + return false; } /** * setup password and port |
