Skip to content

Commit

Permalink
Merge pull request #65 from alercebroker/develop
Browse files Browse the repository at this point in the history
Fix parser targets
  • Loading branch information
Demurest authored Dec 12, 2024
2 parents ae15c8c + f2ab829 commit 5abb70a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/target/infrastructure/TargetParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class TargetParser {
radius: response.radius,
dec: response.dec,
ra: response.ra,
filter: response.filter,
filter: response.filter ? response.filter : { fields: {}, filters: [] },
nMatches: "n_matches" in response ? response.n_matches : 0,
lastMatch: "last_match" in response ? response.last_match : "",
});
Expand Down

0 comments on commit 5abb70a

Please sign in to comment.