mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-22 14:35:41 +00:00
de6462cbd2
* fix(now-playing): hide zero-valued track metadata badges Use explicit > 0 checks instead of truthy && so missing numeric fields (bitDepth, bitRate, samplingRate, year, rating) no longer render as "0". * chore: note PR #865 in changelog and credits * chore: drop PR #865 from settings credits (minor fix) * fix(now-playing): null-safe numeric badge guards for tsc Use (value ?? 0) > 0 so optional metadata fields satisfy strict TS while still omitting zero-valued badges in the UI.