fix(network): don't check IFF_UP

This commit is contained in:
Alex 2019-05-26 19:53:10 +02:00
parent c0a39f34cd
commit 5fd92b3c28
1 changed files with 1 additions and 8 deletions

View File

@ -599,10 +599,6 @@ int waybar::modules::Network::handleEvents(struct nl_msg *msg, void *data) {
auto rtif = static_cast<struct ifinfomsg *>(NLMSG_DATA(nh));
// Check for valid interface
if (rtif->ifi_index == net->ifid_) {
// Down state can be detected here
if (!(rtif->ifi_flags & IFF_UP)) {
net->ifid_ = -1;
}
net->ipaddr_.clear();
net->netmask_.clear();
net->cidr_ = 0;
@ -630,10 +626,7 @@ int waybar::modules::Network::handleEvents(struct nl_msg *msg, void *data) {
net->getInterfaceAddress();
net->thread_timer_.wake_up();
} else {
// Down state can be detected here
if (!(rtif->ifi_flags & IFF_UP)) {
net->ifid_ = -1;
}
net->ifid_ = -1;
net->dp.emit();
}
}