audio streaming app plyr.fm
38
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: bump terms_last_updated to 2026-03-20 (#1168)

* fix: bump terms_last_updated to match privacy policy change

the privacy policy was updated on 2026-03-20 (AuDD → AcoustID in #1164)
but the backend config still had 2026-02-06, so users weren't prompted
to re-accept.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix: check backend terms_last_updated stays in sync with privacy policy

the pre-commit hook now also verifies that LegalSettings.terms_last_updated
is >= the privacy policy's "Last updated" date, so we can't forget to bump
the config that drives the re-acceptance overlay.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

authored by

nate nowack
Claude Opus 4.6
and committed by
GitHub
a9563da3 d2c2200d

+55 -7
+1 -1
backend/src/backend/config.py
··· 160 160 description="USPTO DMCA agent registration number", 161 161 ) 162 162 terms_last_updated: datetime = Field( 163 - default=datetime(2026, 2, 6), 163 + default=datetime(2026, 3, 20), 164 164 description="Date the terms/privacy were last materially updated. " 165 165 "Users who accepted before this date will be prompted to re-accept.", 166 166 )