Bumped application version (#34)

This commit is contained in:
McToel 2025-10-21 15:58:57 +02:00 committed by GitHub
parent b2d9a4e53e
commit 2b1e816c7f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -75,7 +75,7 @@ const formatJourneysReq = (ctx, from, to, when, outFrwd, journeysRef) => {
return { return {
endpoint: opt.bestprice ? profile.bestpriceEndpoint : profile.journeysEndpoint, endpoint: opt.bestprice ? profile.bestpriceEndpoint : profile.journeysEndpoint,
body: query, body: query,
headers: getHeaders('application/x.db.vendo.mob.verbindungssuche.v8+json'), headers: getHeaders('application/x.db.vendo.mob.verbindungssuche.v9+json'),
method: 'post', method: 'post',
}; };
}; };
@ -92,7 +92,7 @@ const formatRefreshJourneyReq = (ctx, refreshToken) => {
return { return {
endpoint: opt.tickets ? profile.refreshJourneysEndpointTickets : profile.refreshJourneysEndpointPolyline, endpoint: opt.tickets ? profile.refreshJourneysEndpointTickets : profile.refreshJourneysEndpointPolyline,
body: query, body: query,
headers: getHeaders('application/x.db.vendo.mob.verbindungssuche.v8+json'), headers: getHeaders('application/x.db.vendo.mob.verbindungssuche.v9+json'),
method: 'post', method: 'post',
}; };
}; };