We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15a5a1e commit dcbe292Copy full SHA for dcbe292
src/shared/shared.cpp
@@ -458,6 +458,12 @@ QDirSet daemonDirectoriesToWatch(const std::shared_ptr<QSettings>& config) {
458
459
// of course we need to watch the main integration directory
460
const auto defaultDestination = integratedAppImagesDestination();
461
+
462
+ // make sure it exists, otherwise the daemon doesn't have anything to do
463
+ if (!defaultDestination.exists()) {
464
+ defaultDestination.mkdir(".");
465
+ }
466
467
watchedDirectories.insert(defaultDestination);
468
469
// however, there's likely additional ones to watch, like a system-wide Applications directory
0 commit comments