mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
only show update indicator if mod is enabled
This commit is contained in:
parent
924b7921ae
commit
8762714c23
1 changed files with 1 additions and 1 deletions
|
@ -594,7 +594,7 @@ bool Index::isUpdateAvailable(IndexItemHandle item) const {
|
||||||
bool Index::areUpdatesAvailable() const {
|
bool Index::areUpdatesAvailable() const {
|
||||||
for (auto& mod : Loader::get()->getAllMods()) {
|
for (auto& mod : Loader::get()->getAllMods()) {
|
||||||
auto item = this->getMajorItem(mod->getID());
|
auto item = this->getMajorItem(mod->getID());
|
||||||
if (item && item->getMetadata().getVersion() > mod->getVersion()) {
|
if (item && item->getMetadata().getVersion() > mod->getVersion() && mod->isEnabled()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue