Merge pull request #2625 from LukashonakV/happyLinter

This commit is contained in:
Alexis Rouillard 2023-11-01 08:27:13 +01:00 committed by GitHub
commit 1149e51f72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 8 deletions

View File

@ -7,7 +7,7 @@ namespace cava {
extern "C" {
#include <cava/common.h>
}
}
} // namespace cava
namespace waybar::modules {
using namespace std::literals::chrono_literals;

View File

@ -575,10 +575,12 @@ auto Mpris::getPlayerInfo() -> std::optional<PlayerInfo> {
errorexit:
std::string errorMsg = error->message;
// When mpris checks for active player sessions periodically(5 secs), NoActivePlayer error message is
// thrown when there are no active sessions. This error message is spamming logs without having any value
// addition. Log the error only if the error we recceived is not NoActivePlayer.
if(errorMsg.rfind("GDBus.Error:com.github.altdesktop.playerctld.NoActivePlayer") == std::string::npos){
// When mpris checks for active player sessions periodically(5 secs), NoActivePlayer error
// message is
// thrown when there are no active sessions. This error message is spamming logs without having
// any value addition. Log the error only if the error we recceived is not NoActivePlayer.
if (errorMsg.rfind("GDBus.Error:com.github.altdesktop.playerctld.NoActivePlayer") ==
std::string::npos) {
spdlog::error("mpris[{}]: {}", info.name, error->message);
}
return std::nullopt;