Fix : convert hour offset in milliseconds

This commit is contained in:
Guillaume Wuip 2015-01-02 09:00:12 +01:00
parent 52785f12e3
commit 13742968b9

View file

@ -238,7 +238,7 @@
var offset = serverOffset - localOffset;
return timestamp + offset * 60;
return timestamp + offset * 60 * 1000;
};
/**