Skip to content

Commit c37f837

Browse files
committed
Remove server side filtering
1 parent d1ebbf4 commit c37f837

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

python/pyplugin_installer/installer_data.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -438,11 +438,9 @@ def xmlDownloaded(self):
438438
qgisMaximumVersion = pluginNodes.item(i).firstChildElement("qgis_maximum_version").text().strip()
439439
if not qgisMaximumVersion:
440440
qgisMaximumVersion = qgisMinimumVersion[0] + ".99"
441-
supports_qt6 = pluginNodes.item(i).firstChildElement("supports_qt6").text().strip().upper() in ("TRUE", "YES")
442-
qt_version = int(QT_VERSION_STR.split('.')[0])
443441
# if compatible, add the plugin to the list
444442
if not pluginNodes.item(i).firstChildElement("disabled").text().strip().upper() in ["TRUE", "YES"]:
445-
if isCompatible(pyQgisVersion(), qgisMinimumVersion, qgisMaximumVersion) and (qt_version != 6 or supports_qt6):
443+
if isCompatible(pyQgisVersion(), qgisMinimumVersion, qgisMaximumVersion):
446444
# add the plugin to the cache
447445
plugins.addFromRepository(plugin)
448446
self.mRepositories[reposName]["state"] = Repositories.STATE_LOADED

0 commit comments

Comments
 (0)