in src/main/java/com/uber/uberscriptquery/util/DateTimeUtils.java [36:45]
public static long getMillisSmart(long value) {
Date dt = new Date(value);
Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("UTC"));
cal.setTime(dt);
int year = cal.get(Calendar.YEAR);
if (year >= 2000 && year < 3000) {
return value;
}
return value * 1000;
}