aboutsummaryrefslogtreecommitdiff
path: root/src/snap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/snap.cpp')
-rw-r--r--src/snap.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/snap.cpp b/src/snap.cpp
index ca89851..259592e 100644
--- a/src/snap.cpp
+++ b/src/snap.cpp
@@ -101,7 +101,7 @@ public:
// calendar events are muted in silent mode; alarm clocks never are
std::shared_ptr<ain::Sound> sound;
- if (appointment.is_ubuntu_alarm() || !silent_mode()) {
+ if (appointment.is_ubuntu_alarm() || (alarm.has_sound() && !silent_mode())) {
// create the sound.
const auto role = appointment.is_ubuntu_alarm() ? "alarm" : "alert";
const auto uri = get_alarm_uri(appointment, alarm, m_settings);
@@ -226,8 +226,6 @@ private:
};
std::string uri;
- if (!alarm.has_sound() && !is_alarm)
- return uri;
for(const auto& candidate : candidates)
{