Docker deployment: fix sentry version

This commit is contained in:
vas3k
2022-03-29 11:20:40 +02:00
parent ed15121d53
commit 34ffc47042
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
Django==3.2.12
gunicorn==20.1.0
uvicorn==0.17.6
psycopg2-binary==2.8.6
psycopg2-binary==3.0.10
click==7.0
pillow==9.0.1
awesome-slugify>=1.6.5
@@ -9,7 +9,7 @@ requests>=2.22.0
beautifulsoup4==4.6.2
pyyaml==5.4
feedparser==6
sentry-sdk==0.14.1
sentry-sdk==1.5.8
nltk==3.6.6
newspaper3k>=0.2.8
django-bleach==1.0.0

View File

@@ -126,7 +126,7 @@ def initialize(config, board_slug, upload_favicons, always_yes):
icon = upload_image_from_url(icon)
print(f"- uploaded favicon: {icon}")
feed.icon = icon
feed.icon = icon[:512] if icon else None
feed.save()