We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c28092b commit 018d8dcCopy full SHA for 018d8dc
src/handler.c
@@ -848,6 +848,14 @@ void setLastRuid(char ruid[17], settings_t *settings)
848
settings_set_unsigned_id("internal.last_ruid_time", time(NULL), settings->internal.overlayNumber);
849
}
850
851
+ tonie_info_t *tonieInfo = getTonieInfoFromRuid(ruid, true, settings);
852
+ if (tonieInfo->json.hide)
853
+ {
854
+ tonieInfo->json.hide = false;
855
+ tonieInfo->json._updated = true;
856
+ }
857
+ saveTonieInfo(tonieInfo, true);
858
+ freeTonieInfo(tonieInfo);
859
860
861
char *getLibraryCachePath(settings_t *settings, uint32_t audioId, bool_t shortPath)
0 commit comments