aboutsummaryrefslogtreecommitdiff
path: root/src/wakeup-timer-powerd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wakeup-timer-powerd.cpp')
-rw-r--r--src/wakeup-timer-powerd.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wakeup-timer-powerd.cpp b/src/wakeup-timer-powerd.cpp
index ab6859f..04db898 100644
--- a/src/wakeup-timer-powerd.cpp
+++ b/src/wakeup-timer-powerd.cpp
@@ -192,8 +192,11 @@ private:
ret = g_dbus_connection_call_finish(G_DBUS_CONNECTION(o), res, &error);
if (ret == nullptr)
{
- if (!g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
+ if (!g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED) &&
+ !g_error_matches(error, G_DBUS_ERROR, G_DBUS_ERROR_SERVICE_UNKNOWN))
+ {
g_warning("%s Could not set hardware wakeup: %s", G_STRLOC, error->message);
+ }
}
else
{