| 405 | } |
| 406 | |
| 407 | bool shallMonitorMountedFilesystems(std::shared_ptr<QSettings> config) { |
| 408 | return config != nullptr && |
| 409 | config->value("appimagelauncherd/monitor_mounted_filesystems", "false").toBool(); |
| 410 | } |
| 411 | |
| 412 | QDirSet getAdditionalDirectoriesFromConfig(const std::shared_ptr<QSettings>& config) { |
| 413 | // getConfig might've returned a null pointer, therefore we have to check this before proceeding |
no outgoing calls
no test coverage detected