Skip to content
This repository was archived by the owner on Mar 30, 2024. It is now read-only.

Commit 9fb2467

Browse files
committed
Fix for Sync-Server
1 parent 32ebffa commit 9fb2467

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/Utilities.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55
class Utilities {
66

7-
const VERSION = 'v1.0.0 rc2';
7+
const VERSION = 'v1.0.0 rc3';
88

99
/**
1010
* OS Consts

core/sync/ServerStatsAccess.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function initialSync() : bool {
6868
file_get_contents( Config::getStorageDir() . '/' . $file ),
6969
true
7070
),
71-
strtotime($file)
71+
strtotime(substr($file, 0, -5))
7272
);
7373
$ok &= !$this->requestError;
7474

0 commit comments

Comments
 (0)