mirror of https://github.com/procxx/kepka.git
Don't spam logs if there are no dbus
This commit is contained in:
parent
c12356a032
commit
1504136828
|
@ -479,12 +479,17 @@ std::optional<crl::time> LastUserInputTime() {
|
||||||
QDBusError::NotSupported,
|
QDBusError::NotSupported,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const auto notSupportedErrorsToLog = {
|
||||||
|
QDBusError::Disconnected,
|
||||||
|
QDBusError::AccessDenied,
|
||||||
|
};
|
||||||
|
|
||||||
if (reply.isValid()) {
|
if (reply.isValid()) {
|
||||||
return (crl::now() - static_cast<crl::time>(reply.value()));
|
return (crl::now() - static_cast<crl::time>(reply.value()));
|
||||||
} else if (ranges::contains(notSupportedErrors, reply.error().type())) {
|
} else if (ranges::contains(notSupportedErrors, reply.error().type())) {
|
||||||
NotSupported = true;
|
NotSupported = true;
|
||||||
} else {
|
} else {
|
||||||
if (reply.error().type() == QDBusError::AccessDenied) {
|
if (ranges::contains(notSupportedErrorsToLog, reply.error().type())) {
|
||||||
NotSupported = true;
|
NotSupported = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue