We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b92090 commit 64cd6d8Copy full SHA for 64cd6d8
weblate/checks/source.py
@@ -68,7 +68,7 @@ def get_related_checks(self, unit_ids: Iterable[int]):
68
from weblate.checks.models import Check
69
70
return Check.objects.filter(
71
- Q(unit_id__in=unit_ids) | Q(unit__source_unit_id__in=unit_ids)
+ Q(unit__id__in=unit_ids) | Q(unit__source_unit_id__in=unit_ids)
72
).select_related("unit__translation")
73
74
def check_source_unit(self, sources: list[str], unit: Unit):
0 commit comments