fix(github): Hide label if 'empty-notifications' is disabled

Before the first update(), the label should stay 'hidden'.
This commit is contained in:
László Várady 2017-01-28 18:30:01 +01:00 committed by Michael Carlberg
parent 501921ef12
commit 7e7dc68e5a
1 changed files with 6 additions and 1 deletions

View File

@ -24,7 +24,12 @@ namespace modules {
if (m_formatter->has(TAG_LABEL)) {
m_label = load_optional_label(m_conf, name(), TAG_LABEL, "Notifications: %notifications%");
m_label->replace_token("%notifications%", m_empty_notifications ? "0" : "");
if (m_empty_notifications) {
m_label->replace_token("%notifications%", "0");
} else {
m_label->clear();
}
}
}