Incorrect Flight Times or Wrong Timezone

Solutions when flight times do not match or show wrong timezone

10 min readLast updated: 1/15/20240

Incorrect Flight Times or Wrong Timezone

If flight times on your LobbyFlight display don't match the official times or the display is in the wrong timezone, follow these troubleshooting steps.

Symptoms

  • Flight times don't match airport website
  • Clock on display shows wrong time
  • Times are offset by exactly 1, 2, or more hours
  • "Last Updated" shows future or past time
  • Flights appear at wrong position in list
  • Quick Checks (2 Minutes)

    1. Check Device Time

    On the display device:

  • Is the system time correct?
  • Is the date correct?
  • Is timezone set correctly?
  • 2. Compare with Airport

    Open official airport website and compare:

  • Same flight, same time?
  • If offset: How many hours difference?
  • Understanding Timezones

    How LobbyFlight Handles Timezones

    DataTimezone
    ----------------
    Flight timesAirport local time
    Display clockDevice timezone
    "Last Updated"Device timezone

    Important

    Flight times are always in the local time of the airport, not your device time. This is aviation standard.

    Cause 1: Device Timezone Wrong

    Check

    Windows:

    Right-click clock → Adjust date/time
    Check: Timezone setting

    Android:

    Settings → System → Date & Time
    Check: Timezone

    Solution

    Windows:

  • Settings → Time & Language → Date & Time
  • Enable "Set timezone automatically"
  • Or: Manually select correct timezone
  • Restart browser
  • Android:

  • Settings → System → Date & Time
  • Enable "Use network-provided time"
  • Enable "Use network-provided timezone"
  • Restart browser
  • Cause 2: Browser Timezone Different from System

    Check

    In browser console (F12 → Console):

    console.log(new Date().toString());
    console.log(Intl.DateTimeFormat().resolvedOptions().timeZone);

    Solution

    Browser inherits timezone from system. If different:

  • Restart browser
  • If still wrong: Restart device
  • Check for timezone-overriding extensions
  • Cause 3: Daylight Saving Time (DST) Issues

    Symptoms

  • Times off by exactly 1 hour
  • Problem started around DST change
  • Some times correct, others not
  • Solution

    Step 1: Check DST setting

    Device should automatically handle DST
    Enable "Automatic time" on device

    Step 2: Force time sync

    Windows: Settings → Time → Sync now
    Android: Settings → Date/Time → Off/On automatic time

    Step 3: Reload display after time change

    Cause 4: Different Airport Timezone

    Scenario

    Your hotel is in a different timezone than the airport you're displaying.

    Example:

  • Hotel in Berlin (UTC+1)
  • Displaying flights from London Heathrow (UTC+0)
  • Times appear 1 hour "off"
  • Solution

    This is correct behavior. Flight times are always in airport local time.

    Options:

  • Accept it: Times shown are when flight departs/arrives at that airport
  • Add info: Tell guests that times are "London time"
  • Select local airport: Use an airport in your timezone
  • Cause 5: Display Configuration Error

    Check in Portal

  • Login → Settings
  • Check timezone-related settings
  • Check if specific timezone is set
  • Solution

    If portal has timezone setting:

  • Set to "Automatic" or
  • Set to airport timezone
  • Verifying Correct Times

    Step-by-Step Verification

    Step 1: Pick a specific flight

    Note: Flight number (e.g., OS 801)
    Note: Time shown on LobbyFlight

    Step 2: Check official source

    Go to airport website
    Find same flight
    Note the official time

    Step 3: Compare

    Same? → Everything correct
    Different? → Check timezone offset
    Offset = Timezone issue

    Common Timezone Offsets

    If times are offset by exactly these amounts:

    OffsetLikely Cause
    ----------------------
    +1/-1 hourDST issue
    +2 hourCET vs UTC confusion
    +8/-8 hourAsia/US timezone
    RandomData or config error

    Technical Diagnosis

    Check Browser Timezone

    // In browser console (F12 → Console):
    
    // Device timezone
    console.log(Intl.DateTimeFormat().resolvedOptions().timeZone);
    
    // Current offset from UTC (in minutes)
    console.log(new Date().getTimezoneOffset());
    
    // Current time
    console.log(new Date().toString());

    Check Flight Data Timezone

    // In Network tab, look at flight API response
    // Times might include timezone info like:
    // "scheduledTime": "2024-01-15T14:30:00+01:00"
    // The +01:00 indicates the timezone

    Still Wrong Times?

    Information for Support

  • Your timezone (e.g., "Europe/Vienna")
  • Airport displayed (IATA code)
  • Specific flight number with time discrepancy
  • Screenshot of LobbyFlight
  • Screenshot of official airport website
  • Output of browser timezone check

  • Related Articles:

  • No Flights Showing Despite Active Flights
  • Configure Display Behavior
  • Airport Selection and Management
  • Was this article helpful?