Elaniobro / MMM-nyc-transit

MTA transit module for Magic Mirror
MIT License
21 stars 14 forks source link

[🐛 BUG] - No train details populating #99

Open Srcodesalittle opened 1 year ago

Srcodesalittle commented 1 year ago

Describe the bug The module was setup according to instructions, I got an API key from the specified site but the only thing present in the module is the header "NEXT TRAIN". I have let the mirror run for multiple days and no improvement.

To Reproduce Steps to reproduce the behavior:

  1. Setup magic mirror and clone repository into modules folder
  2. Install the module with npm install
  3. Edit the config.js file to include the API key and the relevant stops
  4. Start the mirror

Expected behavior The module displays the correct train information for the selected stops

Actual behavior The module displays no train information, only has the header "NEXT TRAINS" followed by a straight line. Completely blank below that.

Screenshots N/A

Platform (please complete the following information):

Configuration

{ disabled: false,
    module: 'MMM-nyc-transit',
    position: "top_left",
    header: "Next Train",
    config: {
      apiKey: "<API key>",
      displayType: "list",
      mtaType: 'train',
      stations: [
        {
          stationId: 610,
          walkingTime: 5,
          dir: {
              upTown: true,
              downTown: true,
          }
        },
        {
          stationId: 177,
          walkingTime: 5,
          dir: {
            upTown: true,
            downTown: false,
          }
        }
      ],
      updateInterval: 300000,
    }
  },

Additional context N/A

Srcodesalittle commented 1 year ago

Not to be a bother but are there any updates on this issue? Thanks

Elaniobro commented 1 year ago

Is MMM-nyc-transit the only module running? How many instances of it do you have installed?

Srcodesalittle commented 1 year ago

It is not the only module running and I have only one instance of the module installed. All the other modules are working fine