Incorrect Flight Times or Wrong Timezone
Solutions when flight times do not match or show wrong timezone
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
Quick Checks (2 Minutes)
1. Check Device Time
On the display device:
2. Compare with Airport
Open official airport website and compare:
Understanding Timezones
How LobbyFlight Handles Timezones
| Data | Timezone |
| ------ | ---------- |
| Flight times | Airport local time |
|---|---|
| Display clock | Device 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 settingAndroid:
Settings → System → Date & Time
Check: TimezoneSolution
Windows:
Android:
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:
Cause 3: Daylight Saving Time (DST) Issues
Symptoms
Solution
Step 1: Check DST setting
Device should automatically handle DST
Enable "Automatic time" on deviceStep 2: Force time sync
Windows: Settings → Time → Sync now
Android: Settings → Date/Time → Off/On automatic timeStep 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:
Solution
This is correct behavior. Flight times are always in airport local time.
Options:
Cause 5: Display Configuration Error
Check in Portal
Solution
If portal has timezone setting:
Verifying Correct Times
Step-by-Step Verification
Step 1: Pick a specific flight
Note: Flight number (e.g., OS 801)
Note: Time shown on LobbyFlightStep 2: Check official source
Go to airport website
Find same flight
Note the official timeStep 3: Compare
Same? → Everything correct
Different? → Check timezone offset
Offset = Timezone issueCommon Timezone Offsets
If times are offset by exactly these amounts:
| Offset | Likely Cause |
| -------- | -------------- |
| +1/-1 hour | DST issue |
|---|---|
| +2 hour | CET vs UTC confusion |
| +8/-8 hour | Asia/US timezone |
| Random | Data 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 timezoneStill Wrong Times?
Information for Support
Related Articles: