Need milliseconds, not seconds

This commit is contained in:
Sylvain Berfini 2012-12-11 17:10:07 +01:00
parent 58c708a10b
commit 28912d2234

View file

@ -67,6 +67,6 @@ class LinphoneCallLogImpl implements LinphoneCallLog {
}
public long getTimestamp() {
return getTimestamp(nativePtr);
return getTimestamp(nativePtr) * 1000; // Need milliseconds, not seconds
}
}