Blob Blame History Raw
diff --git a/lib/private/Updater.php b/lib/private/Updater.php
index 5a14bb17507..38dcb55db7f 100644
--- a/lib/private/Updater.php
+++ b/lib/private/Updater.php
@@ -214,15 +214,17 @@ class Updater extends BasicEmitter {
 			$this->config->setAppValue('core', 'vendor', $currentVendor);
 		}
 
+		/*
+			Fedora package:
+			Remove updater version check, we know that updates across more than one
+			version are possible
+		*/
 		if ($currentVendor === 'nextcloud') {
-			return isset($allowedPreviousVersions[$currentVendor][$majorMinor])
-				&& (version_compare($oldVersion, $newVersion, '<=') ||
-					$this->config->getSystemValueBool('debug', false));
+			return true;
 		}
 
 		// Check if the instance can be migrated
-		return isset($allowedPreviousVersions[$currentVendor][$majorMinor]) ||
-			isset($allowedPreviousVersions[$currentVendor][$oldVersion]);
+		return true;
 	}
 
 	/**