Skip to content

Commit

Permalink
unhide tags on RTNL messages
Browse files Browse the repository at this point in the history
  • Loading branch information
SciLor committed Jan 1, 2025
1 parent c28092b commit 018d8dc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/handler.c
Original file line number Diff line number Diff line change
Expand Up @@ -848,6 +848,14 @@ void setLastRuid(char ruid[17], settings_t *settings)
settings_set_unsigned_id("internal.last_ruid_time", time(NULL), settings->internal.overlayNumber);
}
}
tonie_info_t *tonieInfo = getTonieInfoFromRuid(ruid, true, settings);
if (tonieInfo->json.hide)
{
tonieInfo->json.hide = false;
tonieInfo->json._updated = true;
}
saveTonieInfo(tonieInfo, true);
freeTonieInfo(tonieInfo);
}

char *getLibraryCachePath(settings_t *settings, uint32_t audioId, bool_t shortPath)
Expand Down

0 comments on commit 018d8dc

Please sign in to comment.