diff --git a/lib/private/Updater.php b/lib/private/Updater.php
index 1c79e2ad440810010b6165bbc2d7422baed6a718..43096e7c1f8a44f12445276c1792c7a50ffd2dc4 100644
--- a/lib/private/Updater.php
+++ b/lib/private/Updater.php
@@ -182,16 +182,8 @@ class Updater extends BasicEmitter {
 		$currentVendor = $this->config->getAppValue('core', 'vendor', '');
 
 		// Vendor was not set correctly on install, so we have to white-list known versions
-		if ($currentVendor === '') {
-			if (in_array($oldVersion, [
-				'11.0.2.7',
-				'11.0.1.2',
-				'11.0.0.10',
-			], true)) {
-				$currentVendor = 'nextcloud';
-			} else if (isset($allowedPreviousVersions['owncloud'][$oldVersion])) {
-				$currentVendor = 'owncloud';
-			}
+		if ($currentVendor === '' && isset($allowedPreviousVersions['owncloud'][$oldVersion])) {
+			$currentVendor = 'owncloud';
 		}
 
 		if ($currentVendor === 'nextcloud') {