Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
holi-app-events
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
app
holi-app-events
Commits
b6ab24ac
Verified
Commit
b6ab24ac
authored
1 week ago
by
Alex Timmermann
Browse files
Options
Downloads
Patches
Plain Diff
debug: log full response of GeoAPI if not json
parent
1cda1ec5
Branches
renovate/europe-north1-docker.pkg.dev-holi-shared-docker-hub-remote-docker-28.x
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/adapters/geo/GeoApiClient.ts
+11
-6
11 additions, 6 deletions
app/adapters/geo/GeoApiClient.ts
with
11 additions
and
6 deletions
app/adapters/geo/GeoApiClient.ts
+
11
−
6
View file @
b6ab24ac
...
...
@@ -49,13 +49,18 @@ export class GeoApiClient implements ResolvesCoordinates, ResolvesCity {
'
method
'
:
'
POST
'
,
})
const
body
=
await
response
.
json
()
const
body
=
await
response
.
text
()
try
{
const
data
=
JSON
.
parse
(
body
)
if
(
Object
.
hasOwn
(
data
,
'
errors
'
))
{
this
.
logger
.
error
(
data
.
errors
)
throw
new
GraphQLError
(
"
Can't fetchPlaceDetails for geolocationId
"
+
geolocationId
)
}
if
(
Object
.
hasOwn
(
body
,
'
errors
'
))
{
this
.
logger
.
error
(
body
.
errors
)
throw
new
GraphQLError
(
"
Can't fetchPlaceDetails for geolocationId
"
+
geolocationId
)
return
body
as
GeoAPIResponse
}
catch
(
e
)
{
this
.
logger
.
error
(
`Response is not JSON: "
${
body
}
"`
)
throw
e
}
return
body
as
GeoAPIResponse
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment