mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-16 19:31:02 +01:00
Fix a crash on startup after disabling watching the library for changes. Fixes issue 2585
This commit is contained in:
parent
bdf0ff4930
commit
2e49e89e7b
@ -695,7 +695,9 @@ void LibraryWatcher::ReloadSettings() {
|
||||
}
|
||||
|
||||
if (!monitor_ && was_monitoring_before) {
|
||||
fs_watcher_->Clear();
|
||||
if (fs_watcher_) {
|
||||
fs_watcher_->Clear();
|
||||
}
|
||||
} else if (monitor_ && !was_monitoring_before) {
|
||||
// Add all directories to all QFileSystemWatchers again
|
||||
foreach (const DirData& data, watched_dirs_.values()) {
|
||||
|
Loading…
Reference in New Issue
Block a user