From d2af87d20f219b35e8239e36835f43448d3ecf97 Mon Sep 17 00:00:00 2001
From: Jonas L <jooola@users.noreply.github.com>
Date: Sat, 9 Apr 2022 15:01:48 +0200
Subject: [PATCH] docs: fix broken links to celery project (#1744)

---
 worker/README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/worker/README.md b/worker/README.md
index 6013df141..a37a40683 100644
--- a/worker/README.md
+++ b/worker/README.md
@@ -1,6 +1,6 @@
 # airtime-celery
 
-airtime-celery is a [Celery](https://docs.celeryproject.org/) daemon for handling backend tasks asynchronously. Communication and the Celery results backend are both handled with amqp (RabbitMQ).
+airtime-celery is a [Celery](https://docs.celeryq.dev/) daemon for handling backend tasks asynchronously. Communication and the Celery results backend are both handled with amqp (RabbitMQ).
 
 # Installation
 
@@ -8,7 +8,7 @@ airtime-celery is a [Celery](https://docs.celeryproject.org/) daemon for handlin
 sudo python3 setup.py install
 ```
 
-Each instance of airtime-celery has its own worker, and multiple instances can be run in parallel. [Celery is thread-safe](https://docs.celeryproject.org/en/latest/userguide/application.html), so this parallelization won't cause conflicts.
+Each instance of airtime-celery has its own worker, and multiple instances can be run in parallel. [Celery is thread-safe](https://docs.celeryq.dev/en/latest/userguide/application.html), so this parallelization won't cause conflicts.
 
 # Developers