diff --git a/osinaweb/osichat/__pycache__/models.cpython-310.pyc b/osinaweb/osichat/__pycache__/models.cpython-310.pyc index 69549227..a705f211 100644 Binary files a/osinaweb/osichat/__pycache__/models.cpython-310.pyc and b/osinaweb/osichat/__pycache__/models.cpython-310.pyc differ diff --git a/osinaweb/osichat/models.py b/osinaweb/osichat/models.py index 69c520f7..dcdcd33a 100644 --- a/osinaweb/osichat/models.py +++ b/osinaweb/osichat/models.py @@ -17,7 +17,7 @@ class Visitor(models.Model): email = models.CharField(max_length=100, null=True, blank=True) @property def flag_image_url(self): - flag_url = f"https://osina.ositcom.com/static/images/flags/{self.country.lower()}.svg/" + flag_url = f"https://osina.ositcom.com/static/images/flags/{self.country.lower()}.svg" return flag_url