Don't hold lock on notifyChanged

custom
ailurux 1 year ago
parent 9512bd97bb
commit 527374c72e
  1. 10
      src/audio/track_queue.cpp

@ -318,10 +318,12 @@ auto TrackQueue::repeat() const -> bool {
}
auto TrackQueue::replay(bool en) -> void {
const std::unique_lock<std::shared_mutex> lock(mutex_);
replay_ = en;
if (shuffle_) {
shuffle_->replay(en);
{
const std::unique_lock<std::shared_mutex> lock(mutex_);
replay_ = en;
if (shuffle_) {
shuffle_->replay(en);
}
}
notifyChanged(false);
}

Loading…
Cancel
Save