From d7bca2e84f4038eecd7156de4ab99249a89fb365 Mon Sep 17 00:00:00 2001 From: Stijnvi <145622904+Stijnvi@users.noreply.github.com> Date: Sun, 8 Mar 2026 19:43:27 +0100 Subject: [PATCH 1/4] Update tips-and-tricks.md Fixed powershell code --- radarr/tips-and-tricks.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/radarr/tips-and-tricks.md b/radarr/tips-and-tricks.md index 03f4fbc2c..26f872f47 100644 --- a/radarr/tips-and-tricks.md +++ b/radarr/tips-and-tricks.md @@ -86,11 +86,8 @@ If you need to clean up empty directories, this command will do that: Alternatively in Windows you can run the following script in Powershell to iterate over each file in a directory, and move it to a folder with the same name. ```powershell -Get-ChildItem -File - | ForEach-Object { - $dir = New-Item -ItemType Directory -Name $_.BaseName -Force - $_ | Move-Item -Destination $dir - } +Get-ChildItem -File | ForEach-Object {$dir = New-Item -ItemType Directory -Name $_.BaseName -Force +$_ | Move-Item -Destination $dir} ``` # Configuring Radarr to Auto-Remove Completed Torrents From 545e5e4a429f0d098dc1944d7fcf5c8781f19d5a Mon Sep 17 00:00:00 2001 From: Stijnvi <145622904+Stijnvi@users.noreply.github.com> Date: Sun, 8 Mar 2026 19:46:06 +0100 Subject: [PATCH 2/4] Update tips-and-tricks.md Fixed the powershell code. The previous code did not work due to incorrect formatting. From b2df91ec7f6302c5303d30c2d4c154402bc79ec8 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 8 Mar 2026 18:48:56 +0000 Subject: [PATCH 3/4] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- lidarr/faq.md | 2 +- radarr/tips-and-tricks.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lidarr/faq.md b/lidarr/faq.md index 0d61a6a19..e7a0d776a 100644 --- a/lidarr/faq.md +++ b/lidarr/faq.md @@ -172,7 +172,7 @@ As of Lidarr v2, Authentication is Mandatory. ## How can I find a MusicBrainz ID? 1. [Search for your desired artist or album](https://musicbrainz.org/search) (use `Release Group` type for albums) -2. The MusicBrainz ID can be found under the "Details" tab: +2. The MusicBrainz ID can be found under the "Details" tab: ![musicbrainz_id_detail_tab.png](/images/musicbrainz_id_detail_tab.png) 3. Or at the end of the URL: ![musicbrainz_id_url.png](/images/musicbrainz_id_url.png) diff --git a/radarr/tips-and-tricks.md b/radarr/tips-and-tricks.md index 26f872f47..bb77bc875 100644 --- a/radarr/tips-and-tricks.md +++ b/radarr/tips-and-tricks.md @@ -86,7 +86,7 @@ If you need to clean up empty directories, this command will do that: Alternatively in Windows you can run the following script in Powershell to iterate over each file in a directory, and move it to a folder with the same name. ```powershell -Get-ChildItem -File | ForEach-Object {$dir = New-Item -ItemType Directory -Name $_.BaseName -Force +Get-ChildItem -File | ForEach-Object {$dir = New-Item -ItemType Directory -Name $_.BaseName -Force $_ | Move-Item -Destination $dir} ``` From 096faa9ec134a9118d75491e6a61f1bf821e3594 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 8 Mar 2026 18:58:01 +0000 Subject: [PATCH 4/4] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- lidarr/faq.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lidarr/faq.md b/lidarr/faq.md index e7a0d776a..2ca687297 100644 --- a/lidarr/faq.md +++ b/lidarr/faq.md @@ -169,7 +169,7 @@ As of Lidarr v2, Authentication is Mandatory. - Artists that do not show up in search may be added by searching for `lidarr:mbid` where `mbid` is the Musicbrainz ID of the artist. -## How can I find a MusicBrainz ID? +## How can I find a MusicBrainz ID 1. [Search for your desired artist or album](https://musicbrainz.org/search) (use `Release Group` type for albums) 2. The MusicBrainz ID can be found under the "Details" tab: @@ -177,7 +177,6 @@ As of Lidarr v2, Authentication is Mandatory. 3. Or at the end of the URL: ![musicbrainz_id_url.png](/images/musicbrainz_id_url.png) - ## Lidarr matched an album with too many tracks. How can I change the Album to the correct Release - Open the Album details page and select the Edit Icon in the top nav. There you can find a dropdown of all releases tied to that Album.