diff options
author | luxagraf <sng@luxagraf.net> | 2023-01-08 09:21:58 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-01-08 09:21:58 -0600 |
commit | eb258155a43b3ddcb38da088451135bae4e73b23 (patch) | |
tree | 79cec6539ddb3e471755b85c6a5ba519dcb046c1 /app/links | |
parent | b556fad0deaeda984032e0923e209a56fb7aba35 (diff) |
links: fixed bug
Diffstat (limited to 'app/links')
-rw-r--r-- | app/links/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/links/models.py b/app/links/models.py index c1bd74e..0c7adfa 100644 --- a/app/links/models.py +++ b/app/links/models.py @@ -29,7 +29,7 @@ def email_link(link): 'sng@luxagraf.net', ['sng@luxagraf.net'] ) - if link.tags.first().name = "wired" + if link.tags.first().name == "wired": link.delete() |