diff --git a/app/library/DownloadQueue.py b/app/library/DownloadQueue.py index 60e357c6..fe419209 100644 --- a/app/library/DownloadQueue.py +++ b/app/library/DownloadQueue.py @@ -1002,4 +1002,4 @@ class DownloadQueue(metaclass=Singleton): except Exception as e: self.done.put(item) LOG.exception(e) - LOG.error(f"Failed to re-queue item '{item_ref}'. {e!s}") + LOG.error(f"Failed to retry item '{item_ref}'. {e!s}") diff --git a/app/library/ItemDTO.py b/app/library/ItemDTO.py index d6075072..ea8f7c8e 100644 --- a/app/library/ItemDTO.py +++ b/app/library/ItemDTO.py @@ -39,7 +39,7 @@ class Item: """Extra data to be added to the download.""" requeued: bool = False - """If the item has been re-queued already via conditions.""" + """If the item has been retried already via conditions.""" def serialize(self) -> dict: return self.__dict__.copy() diff --git a/app/library/conditions.py b/app/library/conditions.py index f9ee2ee4..76eed61d 100644 --- a/app/library/conditions.py +++ b/app/library/conditions.py @@ -28,7 +28,7 @@ class Condition: """The filter to run on info dict.""" cli: str - """If matched append this to the download request and re-queue.""" + """If matched append this to the download request and retry.""" def serialize(self) -> dict: return self.__dict__ diff --git a/ui/components/History.vue b/ui/components/History.vue index bb51733d..5c1d6cc1 100644 --- a/ui/components/History.vue +++ b/ui/components/History.vue @@ -55,10 +55,10 @@
-
@@ -145,7 +145,7 @@ @@ -154,8 +154,8 @@
-
@@ -200,7 +200,7 @@