Skip to content

Commit

Permalink
issue 342 - fix Romania flag (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
moloz23 authored Nov 25, 2024
1 parent cfd62fa commit cb6e8d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion usr/lib/hypnotix/hypnotix.py
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ def show_groups(self, widget, content_type):

found_flag = False
for country_name in COUNTRY_CODES.keys():
if country_name.lower() in group.name.lower():
if country_name.lower() == group.name.lower():
found_flag = True
self.add_flag(COUNTRY_CODES[country_name], box)
break
Expand Down

0 comments on commit cb6e8d3

Please sign in to comment.