cubehouse / themeparks

Unofficial API for accessing ride wait times and schedules for Disneyland, Disney World, Universal Studios, and many more parks
MIT License
536 stars 126 forks source link

Magic Kingdom's Boo Bash is on the wrong day #347

Closed dtsn closed 2 years ago

dtsn commented 2 years ago

Park Walt Disney World's Magic Kingdom

Context

Describe the bug Fetching the opening times for today (2021/08/19) returns that there is a boo bash event from 9:30pm to 12:30pm. However, it's on tomorrow. The themeparks.wiki API is returning the correct values.

Output

[
  {
    "date": "2021-08-19",
    "openingTime": "2021-08-19T09:00:00-04:00",
    "closingTime": "2021-08-19T21:00:00-04:00",
    "type": "Operating",
    "special": [
      {
        "openingTime": "2021-08-19T14:00:00-04:00",
        "closingTime": "2021-08-19T21:00:00-04:00",
        "type": "INFO",
        "description": "Park Hopping"
      },
      {
        "openingTime": "2021-08-19T21:30:00-04:00",
        "closingTime": "2021-08-20T00:30:00-04:00",
        "type": "TICKETED_EVENT",
        "description": "Special Ticketed Event"
      }
    ]
  },
  {
    "date": "2021-08-20",
    "openingTime": "2021-08-20T09:00:00-04:00",
    "closingTime": "2021-08-20T21:00:00-04:00",
    "type": "Operating",
    "special": [
      {
        "openingTime": "2021-08-20T14:00:00-04:00",
        "closingTime": "2021-08-20T21:00:00-04:00",
        "type": "INFO",
        "description": "Park Hopping"
      }
    ]
  },
]
Screenshot 2021-08-19 at 14 38 47
cubehouse commented 2 years ago

Believe fixed with fbd45468a1d25f4a99b07a5a064112bf8fb3cc6d

{
    "date": "2021-08-19",
    "openingTime": "2021-08-19T09:00:00-04:00",
    "closingTime": "2021-08-19T21:00:00-04:00",
    "type": "Operating",
    "special": [
      {
        "openingTime": "2021-08-19T14:00:00-04:00",
        "closingTime": "2021-08-19T21:00:00-04:00",
        "description": "Park Hopping",
        "type": "INFO"
      }
    ]
  },
  {
    "date": "2021-08-20",
    "openingTime": "2021-08-20T09:00:00-04:00",
    "closingTime": "2021-08-20T21:00:00-04:00",
    "type": "Operating",
    "special": [
      {
        "openingTime": "2021-08-20T14:00:00-04:00",
        "closingTime": "2021-08-20T21:00:00-04:00",
        "description": "Park Hopping",
        "type": "INFO"
      },
      {
        "openingTime": "2021-08-20T21:30:00-04:00",
        "closingTime": "2021-08-21T00:30:00-04:00",
        "description": "Special Ticketed Event",
        "type": "TICKETED_EVENT"
      }
    ]
  }

May need to clear your cache .db file after getting latest version.

AFAIK, the API server appears to return correct dates, but the processing of this client library is behaving strangely.