No Flights Showing Despite Active Flights

Solutions when the display works but shows no flights

12 min readLast updated: 1/15/20240

No Flights Showing Despite Active Flights

If your LobbyFlight display works but shows "No flights" even though there are actually active departures or arrivals, follow these troubleshooting steps.

Symptoms

  • Display shows "No departures in the next hours"
  • Display shows "No arrivals currently"
  • Empty flight list despite active airport
  • Message "Flight data temporarily unavailable"
  • Quick Checks (2 Minutes)

    1. Verify Airport Selection

    In Hotel Portal:

  • Login → SettingsAirports
  • Check: Is the correct airport selected?
  • Check: Is the IATA code correct?
  • Common IATA code errors:

    DesiredWrongCorrect
    -------------------------
    ViennaVIA, WIE**VIE**
    MunichMUN**MUC**
    FrankfurtFFM**FRA**
    BerlinBLN**BER**
    ZurichZUR**ZRH**
    DusseldorfDUS**DUS** ✓

    2. Check Actual Flight Schedule

    Verify: Are there actually flights at this time?

    Check official airport website:
    - Vienna: flughafen-wien.at
    - Munich: munich-airport.de
    - Frankfurt: frankfurt-airport.de

    Typical quiet times:

  • 00:00 - 05:00 (night flight ban at many airports)
  • Late evening after 23:00
  • At small regional airports possibly all day
  • 3. Check Time Filter

    In Hotel PortalSettings:

  • Departures: Shows next X hours
  • Arrivals: Shows last/next X hours
  • Default values:

    TypeTime Window
    -------------------
    DeparturesNext 6 hours
    ArrivalsLast 2 hours + Next 4 hours

    Problem: If window is too narrow, no flights will be shown.

    Cause 1: IATA Code Not Found

    Symptoms

  • Console error: "Invalid IATA code"
  • No API calls in network tab
  • Immediate "No flights" without loading
  • Solution

    Step 1: Verify IATA code

    IATA codes are always 3 letters!
    Examples: VIE, MUC, FRA, ZRH, LHR, JFK

    Step 2: Update in portal

  • SettingsAirports
  • Remove incorrect airport
  • Add correct IATA code
  • Save and reload display
  • Find IATA Code

    Google search: "[Airport name] IATA code"
    Or: iata.org/en/publications/directories/code-search/

    Cause 2: API Data Not Available

    Technical Details

    LobbyFlight uses external flight data providers. If this data is not available:

    Possible causes:

  • API provider has outage
  • API rate limit exceeded
  • Network problems with API provider
  • Symptoms

  • Display previously worked, now empty
  • Console error: "Failed to fetch flights"
  • Network tab shows failed API calls
  • Solution

    Step 1: Check API status

    In browser console (F12):
    - Look for errors with "aviation" or "flight"
    - Check network tab for failed requests

    Step 2: Wait and retry

  • API outages usually resolve within minutes
  • Automatic retry every 5 minutes
  • Step 3: Force refresh

    Ctrl+Shift+R (Windows/Linux)
    Cmd+Shift+R (Mac)

    Cause 3: Filter Settings Too Restrictive

    Check Settings

    In Hotel Portal → Settings:

    SettingEffectRecommendation
    ---------------------------------
    Show departuresShows/hides departuresEnable
    Show arrivalsShows/hides arrivalsEnable
    Time windowHow far aheadMin. 6 hours
    Airlines filterOnly certain airlinesDisable initially

    Solution

  • Enable all flight types
  • Extend time window
  • Remove all filters
  • Save and reload
  • Cause 4: Timezone Problems

    Symptoms

  • Flights appear "too early" or "too late"
  • Time on display doesn't match local time
  • Flights that should be visible are missing
  • Solution

    Step 1: Check device time

    On Android:
    Settings → System → Date & Time → Automatic

    Step 2: Check timezone in portal

  • SettingsDisplay
  • Check timezone setting
  • Should match the location
  • Step 3: Check browser timezone

    // In browser console (F12):
    console.log(Intl.DateTimeFormat().resolvedOptions().timeZone)
    // Should show e.g. "Europe/Vienna"

    Cause 5: Cache/Browser Problems

    Symptoms

  • Display shows outdated data
  • "Last updated" doesn't change
  • Page reload doesn't help
  • Solution

    Complete cache reset:

    Chrome:
    1. F12 (Developer Tools)
    2. Right-click on reload button
    3. "Empty Cache and Hard Reload"

    Alternative:

    1. Settings → Privacy → Clear browsing data
    2. Select "Cached images and files"
    3. Clear data
    4. Reload page

    Cause 6: Small or Inactive Airport

    Reality Check

    Small airports (< 10 flights/day):

  • There may actually be no flights
  • Check official airport schedule
  • Seasonal airports:

  • Some airports only active in summer/winter
  • Charter airports have irregular schedules
  • Solution

    If the airport actually has no flights:

  • Consider adding a second larger airport nearby
  • Extend time window
  • Show arrivals as well
  • Advanced Diagnostics

    Check Network Requests

    1. F12 → Network tab
    2. Filter by "flight" or "api"
    3. Reload page
    4. Check:
       - Are requests sent?
       - What is the response status? (200 = OK)
       - What data comes back?

    Expected API Response

    A successful API response looks like this:

    {
      "success": true,
      "flights": [
        {
          "flightNumber": "OS 123",
          "destination": "Frankfurt",
          "scheduledTime": "14:30",
          "status": "On Time"
        }
      ]
    }

    If Response is Empty

    {
      "success": true,
      "flights": []  // Empty = no flights
    }

    This is not an error - it means there really are no flights in the time window.

    Still No Flights?

    Checklist Before Support Contact

  • [ ] IATA code verified (3 letters, correct)
  • [ ] Official airport website checked
  • [ ] Time window extended
  • [ ] All filters disabled
  • [ ] Cache cleared
  • [ ] Device time correct
  • Contact Support

    With this information:

  • Hotel ID
  • Selected IATA code
  • Screenshot of settings
  • Screenshot of empty display
  • Time when the problem occurred

  • Related Articles:

  • Incorrect Flight Times or Wrong Timezone
  • Display Shows Demo Data Instead of Real Flights
  • Airport Selection and Management
  • Was this article helpful?