GUACAMOLE-394: Timestamps within JSON from the REST API are in milliseconds, not seconds.

This commit is contained in:
Michael Jumper
2018-01-04 23:25:09 -08:00
parent 138ea40dc9
commit dba3f52d2e
2 changed files with 2 additions and 2 deletions

View File

@@ -105,7 +105,7 @@ angular.module('rest').factory('Connection', [function defineConnection() {
this.sharingProfiles = template.sharingProfiles;
/**
* The time that this connection was last used, in seconds since
* The time that this connection was last used, in milliseconds since
* 1970-01-01 00:00:00 UTC. If this information is unknown or
* unavailable, this will be null.
*

View File

@@ -54,7 +54,7 @@ angular.module('rest').factory('User', [function defineUser() {
this.password = template.password;
/**
* The time that this user was last logged in, in seconds since
* The time that this user was last logged in, in milliseconds since
* 1970-01-01 00:00:00 UTC. If this information is unknown or
* unavailable, this will be null.
*