musora-content-services 2.160.0 → 2.160.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [2.160.1](https://github.com/railroadmedia/musora-content-services/compare/v2.160.0...v2.160.1) (2026-05-13)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * disable debug code ([#970](https://github.com/railroadmedia/musora-content-services/issues/970)) ([4046c4f](https://github.com/railroadmedia/musora-content-services/commit/4046c4fca4457b9d21eab5221876a991bdf22973))
11
+
5
12
  ## [2.160.0](https://github.com/railroadmedia/musora-content-services/compare/v2.159.0...v2.160.0) (2026-05-13)
6
13
 
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "musora-content-services",
3
- "version": "2.160.0",
3
+ "version": "2.160.1",
4
4
  "description": "A package for Musoras content services ",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -11,7 +11,7 @@ const SYNC_TABLES = ['progress', 'content_likes', 'practices', 'practice_day_not
11
11
 
12
12
  export async function repairStaleSyncedRecords(storesRegistry: Record<string, SyncStore<any>>) {
13
13
  const db = Object.values(storesRegistry)[0]!.db
14
- // if (await db.localStorage.get<string>(CLEANUP_FLAG_KEY)) return // todo
14
+ if (await db.localStorage.get<string>(CLEANUP_FLAG_KEY)) return
15
15
 
16
16
  const cutoff = Date.now() - STALE_CUTOFF_MS
17
17
  const payload: Record<string, [id: string, updated_at: EpochMs][]> = {}