forked from mirrors/Scribe.js
Fix : convert hour offset in milliseconds
This commit is contained in:
parent
52785f12e3
commit
13742968b9
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@
|
|||
|
||||
var offset = serverOffset - localOffset;
|
||||
|
||||
return timestamp + offset * 60;
|
||||
return timestamp + offset * 60 * 1000;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue