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

Commit

Permalink
Fix for Sync-Server
Browse files Browse the repository at this point in the history
  • Loading branch information
kimbtech committed Sep 22, 2020
1 parent 32ebffa commit 9fb2467
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/Utilities.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/
class Utilities {

const VERSION = 'v1.0.0 rc2';
const VERSION = 'v1.0.0 rc3';

/**
* OS Consts
Expand Down
2 changes: 1 addition & 1 deletion core/sync/ServerStatsAccess.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function initialSync() : bool {
file_get_contents( Config::getStorageDir() . '/' . $file ),
true
),
strtotime($file)
strtotime(substr($file, 0, -5))
);
$ok &= !$this->requestError;

Expand Down

0 comments on commit 9fb2467

Please sign in to comment.