Skip to content

Commit

Permalink
Adjust repair version check for unmerged shares
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Petry committed Jul 19, 2016
1 parent c4db9ad commit d0244f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/private/Repair/RepairUnmergedShares.php
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ private function countUsers() {

public function run(IOutput $output) {
$ocVersionFromBeforeUpdate = $this->config->getSystemValue('version', '0.0.0');
if (version_compare($ocVersionFromBeforeUpdate, '9.0.4.0', '<')) {
if (version_compare($ocVersionFromBeforeUpdate, '9.2.0.1', '<')) {
// this situation was only possible between 9.0.0 and 9.0.3 included

$function = function(IUser $user) use ($output) {
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
// We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
// when updating major/minor version number.
$OC_Version = array(9, 2, 0, 0);
$OC_Version = array(9, 2, 0, 1);

// The human readable string
$OC_VersionString = '9.2.0 pre alpha';
Expand Down

0 comments on commit d0244f5

Please sign in to comment.