Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue/hitide profile 45 - fix history not showing up #38

Merged
merged 2 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- issue-58: Changed harmony submit call from GET to POST.
### Removed
### Fixed
- issue-45: Fixed history not showing up.


## [4.10.0]
Expand Down
10 changes: 9 additions & 1 deletion server/util/history-db.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,15 @@ function convertDbJobToJsJob(dbJob) {
}

if(jsonProperties[jsKey]) {
value = JSON.parse(value);
// if string is not valid json, convert it to valid json.
try {
value = JSON.parse(value);
} catch(error) {
if(dbKey === 'download_urls') {
value = ['https://harmony.earthdata.nasa.gov/jobs/' + dbJob['token']]
}
}

}

jsJob[jsKey] = value;
Expand Down
Loading