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

/characters/{character_id}/calendar/ returns incorrect event_response #1356

Open
5 of 6 tasks
joaomlneto opened this issue Jun 24, 2023 · 0 comments
Open
5 of 6 tasks

Comments

@joaomlneto
Copy link

Bug

The field event_response in each entry returned by the /characters/{character_id}/calendar/ endpoint should indicate whether the character has accepted/declined/tentative/not yet responded to each event.

However, its value appears to be completely random/nonsense. For example, an event where I haven't responded it can show any value. It also doesn't match the "majority of attendees", as an event with 2/3 declined shows as tentative.

Querying the response from the individual event endpoint (/characters/{character_id}/calendar/{event_id}/) yields the correct value, which matches the one from the EVE client.

As a concrete example, event with ID 2766948 in the EVE client shows as not_responded:
image

The "list events" endpoint returns:

[
  {
    "event_id": 2766948,
    "event_response": "tentative",
    
  }
  
]

But querying the specific event endpoint yields the correct result:

{
    "event_id": 2766948,
    "response": "not_responded",
}

Checklist

Check all boxes that apply to this issue:

  • Bug description is provided
  • Request path is provided
  • Response status code is provided
  • Response headers are provided
  • Response body is provided
  • Expected response is provided
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants