Skip to content

Commit f85f05c

Browse files
authored
Fix error sorting my plugins with latest_version_date
1 parent ad67aa9 commit f85f05c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qgis-app/plugins/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1191,7 +1191,7 @@ class MyPluginsList(PluginsList):
11911191
def get_queryset(self):
11921192
"""Override to include soft-deleted plugins for the user's own plugins."""
11931193
# Use objects.all() to bypass the BasePluginManager filter that excludes soft-deleted items
1194-
qs = Plugin.objects.all()
1194+
qs = Plugin.base_objects.all()
11951195
# Apply the user filter
11961196
qs = self.get_filtered_queryset(qs)
11971197

0 commit comments

Comments
 (0)