Skip to content

Commit

Permalink
Regression: invalid statistics format (#26684)
Browse files Browse the repository at this point in the history
  • Loading branch information
cauefcr authored Aug 25, 2022
1 parent 5ec8b3a commit 68bc2ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/meteor/app/statistics/server/lib/statistics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const statistics = {
const uniqueID = await Settings.findOne('uniqueID');
statistics.uniqueId = settings.get('uniqueID');
if (uniqueID) {
statistics.installedAt = String(uniqueID.createdAt);
statistics.installedAt = uniqueID.createdAt.toISOString();
}

if (Info) {
Expand Down

0 comments on commit 68bc2ae

Please sign in to comment.