fix: remove double spaces in s8 Mermaid flowchart edge definitions
All checks were successful
Build and Push Docker Image / build (push) Successful in 39s
CI / Security audit (push) Successful in 1m17s
CI / Tests & coverage (push) Successful in 1m23s

This commit is contained in:
2026-05-17 18:30:58 +01:00
parent ef89207d9d
commit 2cf163dfff

View File

@@ -373,17 +373,17 @@ For each download item (SABnzbd slot or qBittorrent torrent):
flowchart TD
Start(["Download item"]) --> SQ{"Sonarr QUEUE\nmatch (title)"}
SQ -->|yes| SQR["Resolve series via seriesMap\nextract user tag, check match"]
SQ -->|no| RQ{"Radarr QUEUE\nmatch (title)"}
SQ -->|no| RQ{"Radarr QUEUE\nmatch (title)"}
RQ -->|yes| RQR["Resolve movie via moviesMap\nextract user tag, check match"]
RQ -->|no| SH{"Sonarr HISTORY\nmatch (title)"}
RQ -->|no| SH{"Sonarr HISTORY\nmatch (title)"}
SH -->|yes| SHR["Resolve series via seriesId\nextract user tag, check match"]
SH -->|no| RH{"Radarr HISTORY\nmatch (title)"}
SH -->|no| RH{"Radarr HISTORY\nmatch (title)"}
RH -->|yes| RHR["Resolve movie via movieId\nextract user tag, check match"]
RH -->|no| Skip(["Skip - unmatched"])
RH -->|no| Skip(["Skip - unmatched"])
SQR & RQR & SHR & RHR --> Tagged{"Tag matches\nrequesting user?"}
Tagged -->|yes| Include(["Include in response"])
Tagged -->|no| Skip
Tagged -->|no| Skip
```
### Title Matching