Skip to content

Commit d4df2bf

Browse files
Vincent Petryrullzer
authored andcommitted
Adjust repair version check for unmerged shares
1 parent b26b5cd commit d4df2bf

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/private/Repair/RepairUnmergedShares.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ private function countUsers() {
302302

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

308308
$function = function(IUser $user) use ($output) {

version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
// We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades
2626
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
2727
// when updating major/minor version number.
28-
$OC_Version = array(9, 1, 0, 13);
28+
$OC_Version = array(9, 1, 0, 14);
2929

3030
// The human readable string
3131
$OC_VersionString = '10.0 beta';

0 commit comments

Comments
 (0)