Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
wrac4242 authored and eugene2candy committed Apr 10, 2021
1 parent 406e8ed commit dbc0eb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/sysinfo.class.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class Sysinfo {
if (bat.hasbattery) {
if (bat.ischarging) {
indicator.innerHTML = "CHARGE";
} else if (bat.acconnected || bat.timeremaining === -1) {
} else if (bat.acconnected /*|| bat.timeremaining === -1*/) {//fixes #833
indicator.innerHTML = "WIRED";
} else {
indicator.innerHTML = bat.percent+"%";
Expand Down

0 comments on commit dbc0eb5

Please # to comment.