musora-content-services 2.107.6 → 2.107.7
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 +7 -0
- package/package.json +1 -1
- package/src/services/contentProgress.js +0 -1
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.107.7](https://github.com/railroadmedia/musora-content-services/compare/v2.107.6...v2.107.7) (2025-12-29)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* daniel merged bad ([#675](https://github.com/railroadmedia/musora-content-services/issues/675)) ([1c5863b](https://github.com/railroadmedia/musora-content-services/commit/1c5863bc921967fe16875367d9589c8dcf4e0ac3))
|
|
11
|
+
|
|
5
12
|
### [2.107.6](https://github.com/railroadmedia/musora-content-services/compare/v2.107.5...v2.107.6) (2025-12-29)
|
|
6
13
|
|
|
7
14
|
|
package/package.json
CHANGED
|
@@ -469,7 +469,6 @@ export async function contentStatusReset(contentId, collection = null, {skipPush
|
|
|
469
469
|
|
|
470
470
|
async function saveContentProgress(contentId, collection, progress, currentSeconds, {skipPush = false} = {}) {
|
|
471
471
|
const isLP = collection?.type === COLLECTION_TYPE.LEARNING_PATH
|
|
472
|
-
async function saveContentProgress(contentId, collection, progress, currentSeconds) {
|
|
473
472
|
|
|
474
473
|
// filter out contentIds that are setting progress lower than existing
|
|
475
474
|
const contentIdProgress = await getProgressDataByIds([contentId], collection)
|