Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unexpected character encountered while parsing value: [. Path '[0].required', line 5, position 17 #16

Closed
jpdsc opened this issue Oct 9, 2021 · 9 comments

Comments

@jpdsc
Copy link

jpdsc commented Oct 9, 2021

Hey there!
I think this error started happening in the last week after a Sonarr update.
Confirmation received from a Discord user that Sonarr changes their release profiles from strings to lists:

https://github.com/Sonarr/Sonarr/blob/deed85d2f9147e6180014507ef4f5af3695b0c61/src/NzbDrone.Core/Datastore/Migration/162_release_profile_to_array.cs

[INF] Processing Release Profile: Series
[ERR] HTTP error while communicating with Sonarr
Flurl.Http.FlurlParsingException: Response could not be deserialized to JSON: GET http://IP:PORT/api/v3/releaseprofile?apikey=API
 ---> Newtonsoft.Json.JsonReaderException: Unexpected character encountered while parsing value: [. Path '[0].required', line 5, position 17.
   at Newtonsoft.Json.JsonTextReader.ReadStringValue(ReadType readType)
   at Newtonsoft.Json.JsonTextReader.ReadAsString()
   at Newtonsoft.Json.JsonReader.ReadForType(JsonContract contract, Boolean hasConverter)
   at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.PopulateObject(Object newObject, JsonReader reader, JsonObjectContract contract, JsonProperty member, String id)
   at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObject(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
   at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
   at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.PopulateList(IList list, JsonReader reader, JsonArrayContract contract, JsonProperty containerProperty, String id)
   at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateList(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, Object existingValue, String id)
   at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
   at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent)
   at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType)
   at Newtonsoft.Json.JsonSerializer.Deserialize[T](JsonReader reader)
   at Flurl.Http.Configuration.NewtonsoftJsonSerializer.Deserialize[T](Stream stream)
   at Flurl.Http.FlurlResponse.GetJsonAsync[T]()
   --- End of inner exception stack trace ---
   at Flurl.Http.FlurlRequest.HandleExceptionAsync(FlurlCall call, Exception ex, CancellationToken token)
   at Flurl.Http.FlurlResponse.GetJsonAsync[T]()
   at Flurl.Http.ResponseExtensions.ReceiveJson[T](Task`1 response)
   at TrashLib.Sonarr.Api.SonarrApi.GetReleaseProfiles()
   at TrashLib.Sonarr.ReleaseProfile.ReleaseProfileUpdater.ProcessReleaseProfiles(IDictionary`2 profiles, ReleaseProfileConfig config)
   at TrashLib.Sonarr.ReleaseProfile.ReleaseProfileUpdater.Process(Boolean isPreview, SonarrConfiguration config)
   at Trash.Command.SonarrCommand.Process()
Exiting due to previous exception

JSON for row 5

[
  {
    "name": ".su season pack issue",
    "enabled": true,
    "required": [],
    "ignored": [

Not clue how to fix this from my side.

@rcdailey
Copy link
Member

Thanks for letting me know about this one. After investigating a bit, I see that they made a backward-breaking API change. I'm currently working on a fix for this. I intend to keep compatibility with older versions of Sonarr if possible. Thank you for the detailed bug report. The links and stack trace are greatly appreciated!!

@ghost
Copy link

ghost commented Oct 15, 2021

hi, just quickly adding on to this - I just got the following as well:

Update Sonarr/Radarr Quality definition and release profiles...
[INF] Processing Release Profile: Series
[INF] Configuration is set to allow optional terms to be synchronized
[INF] Create new profile: [Trash] Series - First Release Profile
[ERR] HTTP error while communicating with Sonarr
Flurl.Http.FlurlParsingException: Response could not be deserialized to JSON: POST http://IP:PORT/api/v3/releaseprofile?apikey=API
---> Newtonsoft.Json.JsonReaderException: Unexpected character encountered while parsing value: [. Path 'required', line 4, position 15.
at Newtonsoft.Json.JsonTextReader.ReadStringValue(ReadType readType)
at Newtonsoft.Json.JsonTextReader.ReadAsString()
at Newtonsoft.Json.JsonReader.ReadForType(JsonContract contract, Boolean hasConverter)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.PopulateObject(Object newObject, JsonReader reader, JsonObjectContract contract, JsonProperty member, String id)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObject(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent)
at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonSerializer.Deserialize[T](JsonReader reader)
at Flurl.Http.Configuration.NewtonsoftJsonSerializer.Deserialize[T](Stream stream)
at Flurl.Http.FlurlResponse.GetJsonAsync[T]()
--- End of inner exception stack trace ---
at Flurl.Http.FlurlRequest.HandleExceptionAsync(FlurlCall call, Exception ex, CancellationToken token)
at Flurl.Http.FlurlResponse.GetJsonAsync[T]()
at Flurl.Http.ResponseExtensions.ReceiveJson[T](Task`1 response)
at TrashLib.Sonarr.Api.SonarrApi.CreateReleaseProfile(SonarrReleaseProfile newProfile)
at TrashLib.Sonarr.ReleaseProfile.ReleaseProfileUpdater.CreateNewProfile(String title, FilteredProfileData profile, List`1 tagIds)
at TrashLib.Sonarr.ReleaseProfile.ReleaseProfileUpdater.ProcessReleaseProfiles(IDictionary`2 profiles, ReleaseProfileConfig config)
at TrashLib.Sonarr.ReleaseProfile.ReleaseProfileUpdater.Process(Boolean isPreview, SonarrConfiguration config)
at Trash.Command.SonarrCommand.Process()
Exiting due to previous exception
Updates completed...

However, I do not know how to tell you which json this is from.

Just came across this amazing tool and hoping to use it very soon :-)

Have a great day!

@rcdailey
Copy link
Member

Thanks for the update @sardinemaster. I'm close to finishing up the fix for this. I haven't had much free time later, which is why this is taking a while. It's also been a challenge to try to make this backward compatible client-side. Should have a fix in by this weekend, but I'll keep you all posted. Thanks again for the continued feedback.

@ghost
Copy link

ghost commented Oct 15, 2021

There is absolutely no problem! I'm just glad this project exists and I'm happy to help in any way I can.

Take your time and have a great weekend!

rcdailey added a commit that referenced this issue Oct 16, 2021
The Sonarr developers made a backward-breaking API change resulting in
Trash Updater being unable to obtain, create, or update release
profiles. This fix keeps backward compatibility with the previous and
current schema at the cost of additional code complexity.

The specific breakage was in the Ignored and Required properties of the
Release Profile JSON schema. They were converted from string type to
array.

Offending change:
https://github.com/Sonarr/Sonarr/blob/deed85d2f9147e6180014507ef4f5af3695b0c61/src/NzbDrone.Core/Datastore/Migration/162_release_profile_to_array.cs

Fixes #16
@ghost
Copy link

ghost commented Oct 17, 2021

Hello,
Thanks for the fix! I may be a bit too eager and it's possible you're not finished, however I have tried it and unfortunately, I'm still getting a similar error. The only difference is that the "unexpected character" is in a different line now.
I'm on unraid and to run your script I use the command you provided:
wget -O trash.zip https://github.com/rcdailey/trash-updater/releases/latest/download/trash-linux-x64.zip \ && unzip -o trash.zip && rm trash.zip && chmod u+rx trash

However, even with this error it is creating one release profile. In this case, the first sonarr release profile is being created, however nothing else (sonarr or radarr).

I will provide you with the most recent error log (the previous one is in my first post) and 2 print screens showing you the release profile it created as well as the files I have in my trash-updater folder.

If you need anything else to help you, don't hesitate in asking.

Here is the current error log provided to me by unraid:

Script location: /tmp/user.scripts/tmpScripts/trash-updater/script
Note that closing this window will abort the execution of this script
Updating the latest version
--2021-10-17 04:26:14-- https://github.Resolving github.com (github.com)... 140.82.113.4
Connecting to github.com (github.com)|140.82.113.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://github.com/rcdailey/trash-updater/releases/download/v1.6.3/trash-linux-x64.zip [following]
--2021-10-17 04:26:15-- https://github.com/rcdailey/trash-updater/releases/download/v1.6.3/trash-linux-x64.zip
Reusing existing connection to github.com:443.
HTTP request sent, awaiting response... 302 Found
Location: https://github-releases.githubusercontent.com/336108922/823060d5-418b-4577-8af5-b7024d4357db?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20211017%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20211017T022607Z&X-Amz-Expires=300&X-Amz-Signature=69c4f129d011e234e5186c891ac30cacdb91a4def55c9ba543b4d26807fffae1&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=336108922&response-content-disposition=attachment%3B%20filename%3Dtrash-linux-x64.zip&response-content-type=application%2Foctet-stream [following]
--2021-10-17 04:26:15-- https://github-releases.githubusercontent.com/336108922/823060d5-418b-4577-8af5-b7024d4357db?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20211017%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20211017T022607Z&X-Amz-Expires=300&X-Amz-Signature=69c4f129d011e234e5186c891ac30cacdb91a4def55c9ba543b4d26807fffae1&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=336108922&response-content-disposition=attachment%3B%20filename%3Dtrash-linux-x64.zip&response-content-type=application%2Foctet-stream
Resolving github-releases.githubusercontent.com (github-releases.githubusercontent.com)... 2606:50c0:8000::154, 2606:50c0:8003::154, 2606:50c0:8002::154, ...
Connecting to github-releases.githubusercontent.com (github-releases.githubusercontent.com)|2606:50c0:8000::154|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 26279747 (25M) [application/octet-stream]
Saving to: 'trash.zip'

0K .......... .......... .......... .......... .......... 0% 3.28M 8s
50K .......... .......... .......... .......... .......... 0% 3.64M 7s
100K .......... .......... .......... .......... .......... 0% 11.7M 6s
150K .......... .......... .......... .......... .......... 0% 6.56M 5s
200K .......... .......... .......... .......... .......... 0% 16.0M 4s
250K .......... .......... .......... .......... .......... 1% 27.7M 4s
300K .......... .......... .......... .......... .......... 1% 27.8M 3s
350K .......... .......... .......... .......... .......... 1% 7.72M 3s
400K .......... .......... .......... .......... .......... 1% 46.2M 3s
450K .......... .......... .......... .......... .......... 1% 26.0M 3s
500K .......... .......... .......... .......... .......... 2% 52.6M 3s
550K .......... .......... .......... .......... .......... 2% 66.5M 2s
600K .......... .......... .......... .......... .......... 2% 83.1M 2s
650K .......... .......... .......... .......... .......... 2% 44.9M 2s
700K .......... .......... .......... .......... .......... 2% 48.8M 2s
750K .......... .......... .......... .......... .......... 3% 8.82M 2s
800K .......... .......... .......... .......... .......... 3% 115M 2s
850K .......... .......... .......... .......... .......... 3% 52.8M 2s
900K .......... .......... .......... .......... .......... 3% 61.3M 2s
950K .......... .......... .......... .......... .......... 3% 51.9M 2s
1000K .......... .......... .......... .......... .......... 4% 134M 2s
1050K .......... .......... .......... .......... .......... 4% 43.7M 2s
1100K .......... .......... .......... .......... .......... 4% 152M 2s
1150K .......... .......... .......... .......... .......... 4% 110M 1s
1200K .......... .......... .......... .......... .......... 4% 95.9M 1s
1250K .......... .......... .......... .......... .......... 5% 131M 1s
1300K .......... .......... .......... .......... .......... 5% 110M 1s
1350K .......... .......... .......... .......... .......... 5% 95.5M 1s
1400K .......... .......... .......... .......... .......... 5% 146M 1s
1450K .......... .......... .......... .......... .......... 5% 76.3M 1s
1500K .......... .......... .......... .......... .......... 6% 111M 1s
1550K .......... .......... .......... .......... .......... 6% 151M 1s
1600K .......... .......... .......... .......... .......... 6% 11.2M 1s
1650K .......... .......... .......... .......... .......... 6% 104M 1s
1700K .......... .......... .......... .......... .......... 6% 92.7M 1s
1750K .......... .......... .......... .......... .......... 7% 209M 1s
1800K .......... .......... .......... .......... .......... 7% 92.6M 1s
1850K .......... .......... .......... .......... .......... 7% 100M 1s
1900K .......... .......... .......... .......... .......... 7% 94.8M 1s
1950K .......... .......... .......... .......... .......... 7% 140M 1s
2000K .......... .......... .......... .......... .......... 7% 118M 1s
2050K .......... .......... .......... .......... .......... 8% 88.8M 1s
2100K .......... .......... .......... .......... .......... 8% 137M 1s
2150K .......... .......... .......... .......... .......... 8% 115M 1s
2200K .......... .......... .......... .......... .......... 8% 100M 1s
2250K .......... .......... .......... .......... .......... 8% 95.4M 1s
2300K .......... .......... .......... .......... .......... 9% 95.7M 1s
2350K .......... .......... .......... .......... .......... 9% 138M 1s
2400K .......... .......... .......... .......... .......... 9% 114M 1s
2450K .......... .......... .......... .......... .......... 9% 89.0M 1s
2500K .......... .......... .......... .......... .......... 9% 141M 1s
2550K .......... .......... .......... .......... .......... 10% 115M 1s
2600K .......... .......... .......... .......... .......... 10% 93.2M 1s
2650K .......... .......... .......... .......... .......... 10% 111M 1s
2700K .......... .......... .......... .......... .......... 10% 125M 1s
2750K .......... .......... .......... .......... .......... 10% 96.8M 1s
2800K .......... .......... .......... .......... .......... 11% 114M 1s
2850K .......... .......... .......... .......... .......... 11% 124M 1s
2900K .......... .......... .......... .......... .......... 11% 103M 1s
2950K .......... .......... .......... .......... .......... 11% 106M 1s
3000K .......... .......... .......... .......... .......... 11% 145M 1s
3050K .......... .......... .......... .......... .......... 12% 74.7M 1s
3100K .......... .......... .......... .......... .......... 12% 137M 1s
3150K .......... .......... .......... .......... .......... 12% 116M 1s
3200K .......... .......... .......... .......... .......... 12% 94.4M 1s
3250K .......... .......... .......... .......... .......... 12% 133M 1s
3300K .......... .......... .......... .......... .......... 13% 104M 1s
3350K .......... .......... .......... .......... .......... 13% 105M 1s
3400K .......... .......... .......... .......... .......... 13% 129M 1s
3450K .......... .......... .......... .......... .......... 13% 76.5M 1s
3500K .......... .......... .......... .......... .......... 13% 139M 1s
3550K .......... .......... .......... .......... .......... 14% 113M 1s
3600K .......... .......... .......... .......... .......... 14% 167M 1s
3650K .......... .......... .......... .......... .......... 14% 80.8M 1s
3700K .......... .......... .......... .......... .......... 14% 114M 1s
3750K .......... .......... .......... .......... .......... 14% 91.7M 1s
3800K .......... .......... .......... .......... .......... 15% 149M 1s
3850K .......... .......... .......... .......... .......... 15% 99.8M 1s
3900K .......... .......... .......... .......... .......... 15% 61.2M 1s
3950K .......... .......... .......... .......... .......... 15% 171M 1s
4000K .......... .......... .......... .......... .......... 15% 185M 1s
4050K .......... .......... .......... .......... .......... 15% 99.2M 1s
4100K .......... .......... .......... .......... .......... 16% 113M 1s
4150K .......... .......... .......... .......... .......... 16% 151M 1s
4200K .......... .......... .......... .......... .......... 16% 108M 1s
4250K .......... .......... .......... .......... .......... 16% 87.2M 1s
4300K .......... .......... .......... .......... .......... 16% 115M 1s
4350K .......... .......... .......... .......... .......... 17% 92.0M 1s
4400K .......... .......... .......... .......... .......... 17% 125M 0s
4450K .......... .......... .......... .......... .......... 17% 119M 0s
4500K .......... .......... .......... .......... .......... 17% 89.3M 0s
4550K .......... .......... .......... .......... .......... 17% 150M 0s
4600K .......... .......... .......... .......... .......... 18% 107M 0s
4650K .......... .......... .......... .......... .......... 18% 97.6M 0s
4700K .......... .......... .......... .......... .......... 18% 127M 0s
4750K .......... .......... .......... .......... .......... 18% 100M 0s
4800K .......... .......... .......... .......... .......... 18% 106M 0s
4850K .......... .......... .......... .......... .......... 19% 105M 0s
4900K .......... .......... .......... .......... .......... 19% 137M 0s
4950K .......... .......... .......... .......... .......... 19% 95.5M 0s
5000K .......... .......... .......... .......... .......... 19% 134M 0s
5050K .......... .......... .......... .......... .......... 19% 91.0M 0s
5100K .......... .......... .......... .......... .......... 20% 95.0M 0s
5150K .......... .......... .......... .......... .......... 20% 136M 0s
5200K .......... .......... .......... .......... .......... 20% 114M 0s
5250K .......... .......... .......... .......... .......... 20% 86.2M 0s
5300K .......... .......... .......... .......... .......... 20% 156M 0s
5350K .......... .......... .......... .......... .......... 21% 102M 0s
5400K .......... .......... .......... .......... .......... 21% 97.4M 0s
5450K .......... .......... .......... .......... .......... 21% 154M 0s
5500K .......... .......... .......... .......... .......... 21% 82.8M 0s
5550K .......... .......... .......... .......... .......... 21% 127M 0s
5600K .......... .......... .......... .......... .......... 22% 94.7M 0s
5650K .......... .......... .......... .......... .......... 22% 139M 0s
5700K .......... .......... .......... .......... .......... 22% 92.1M 0s
5750K .......... .......... .......... .......... .......... 22% 128M 0s
5800K .......... .......... .......... .......... .......... 22% 97.9M 0s
5850K .......... .......... .......... .......... .......... 22% 95.6M 0s
5900K .......... .......... .......... .......... .......... 23% 136M 0s
5950K .......... .......... .......... .......... .......... 23% 113M 0s
6000K .......... .......... .......... .......... .......... 23% 96.7M 0s
6050K .......... .......... .......... .......... .......... 23% 114M 0s
6100K .......... .......... .......... .......... .......... 23% 109M 0s
6150K .......... .......... .......... .......... .......... 24% 130M 0s
6200K .......... .......... .......... .......... .......... 24% 80.4M 0s
6250K .......... .......... .......... .......... .......... 24% 191M 0s
6300K .......... .......... .......... .......... .......... 24% 89.1M 0s
6350K .......... .......... .......... .......... .......... 24% 103M 0s
6400K .......... .......... .......... .......... .......... 25% 104M 0s
6450K .......... .......... .......... .......... .......... 25% 115M 0s
6500K .......... .......... .......... .......... .......... 25% 125M 0s
6550K .......... .......... .......... .......... .......... 25% 122M 0s
6600K .......... .......... .......... .......... .......... 25% 79.8M 0s
6650K .......... .......... .......... .......... .......... 26% 163M 0s
6700K .......... .......... .......... .......... .......... 26% 90.6M 0s
6750K .......... .......... .......... .......... .......... 26% 112M 0s
6800K .......... .......... .......... .......... .......... 26% 127M 0s
6850K .......... .......... .......... .......... .......... 26% 102M 0s
6900K .......... .......... .......... .......... .......... 27% 100M 0s
6950K .......... .......... .......... .......... .......... 27% 151M 0s
7000K .......... .......... .......... .......... .......... 27% 93.4M 0s
7050K .......... .......... .......... .......... .......... 27% 107M 0s
7100K .......... .......... .......... .......... .......... 27% 92.7M 0s
7150K .......... .......... .......... .......... .......... 28% 104M 0s
7200K .......... .......... .......... .......... .......... 28% 136M 0s
7250K .......... .......... .......... .......... .......... 28% 109M 0s
7300K .......... .......... .......... .......... .......... 28% 89.6M 0s
7350K .......... .......... .......... .......... .......... 28% 108M 0s
7400K .......... .......... .......... .......... .......... 29% 136M 0s
7450K .......... .......... .......... .......... .......... 29% 111M 0s
7500K .......... .......... .......... .......... .......... 29% 103M 0s
7550K .......... .......... .......... .......... .......... 29% 124M 0s
7600K .......... .......... .......... .......... .......... 29% 117M 0s
7650K .......... .......... .......... .......... .......... 30% 102M 0s
7700K .......... .......... .......... .......... .......... 30% 91.4M 0s
7750K .......... .......... .......... .......... .......... 30% 135M 0s
7800K .......... .......... .......... .......... .......... 30% 111M 0s
7850K .......... .......... .......... .......... .......... 30% 87.6M 0s
7900K .......... .......... .......... .......... .......... 30% 116M 0s
7950K .......... .......... .......... .......... .......... 31% 111M 0s
8000K .......... .......... .......... .......... .......... 31% 126M 0s
8050K .......... .......... .......... .......... .......... 31% 103M 0s
8100K .......... .......... .......... .......... .......... 31% 113M 0s
8150K .......... .......... .......... .......... .......... 31% 111M 0s
8200K .......... .......... .......... .......... .......... 32% 104M 0s
8250K .......... .......... .......... .......... .......... 32% 95.4M 0s
8300K .......... .......... .......... .......... .......... 32% 120M 0s
8350K .......... .......... .......... .......... .......... 32% 98.3M 0s
8400K .......... .......... .......... .......... .......... 32% 122M 0s
8450K .......... .......... .......... .......... .......... 33% 105M 0s
8500K .......... .......... .......... .......... .......... 33% 94.3M 0s
8550K .......... .......... .......... .......... .......... 33% 144M 0s
8600K .......... .......... .......... .......... .......... 33% 113M 0s
8650K .......... .......... .......... .......... .......... 33% 91.3M 0s
8700K .......... .......... .......... .......... .......... 34% 142M 0s
8750K .......... .......... .......... .......... .......... 34% 97.2M 0s
8800K .......... .......... .......... .......... .......... 34% 114M 0s
8850K .......... .......... .......... .......... .......... 34% 122M 0s
8900K .......... .......... .......... .......... .......... 34% 92.1M 0s
8950K .......... .......... .......... .......... .......... 35% 117M 0s
9000K .......... .......... .......... .......... .......... 35% 105M 0s
9050K .......... .......... .......... .......... .......... 35% 95.3M 0s
9100K .......... .......... .......... .......... .......... 35% 134M 0s
9150K .......... .......... .......... .......... .......... 35% 118M 0s
9200K .......... .......... .......... .......... .......... 36% 111M 0s
9250K .......... .......... .......... .......... .......... 36% 107M 0s
9300K .......... .......... .......... .......... .......... 36% 94.8M 0s
9350K .......... .......... .......... .......... .......... 36% 118M 0s
9400K .......... .......... .......... .......... .......... 36% 148M 0s
9450K .......... .......... .......... .......... .......... 37% 71.5M 0s
9500K .......... .......... .......... .......... .......... 37% 134M 0s
9550K .......... .......... .......... .......... .......... 37% 109M 0s
9600K .......... .......... .......... .......... .......... 37% 145M 0s
9650K .......... .......... .......... .......... .......... 37% 94.3M 0s
9700K .......... .......... .......... .......... .......... 37% 106M 0s
9750K .......... .......... .......... .......... .......... 38% 102M 0s
9800K .......... .......... .......... .......... .......... 38% 96.2M 0s
9850K .......... .......... .......... .......... .......... 38% 131M 0s
9900K .......... .......... .......... .......... .......... 38% 104M 0s
9950K .......... .......... .......... .......... .......... 38% 149M 0s
10000K .......... .......... .......... .......... .......... 39% 83.1M 0s
10050K .......... .......... .......... .......... .......... 39% 112M 0s
10100K .......... .......... .......... .......... .......... 39% 126M 0s
10150K .......... .......... .......... .......... .......... 39% 142M 0s
10200K .......... .......... .......... .......... .......... 39% 90.4M 0s
10250K .......... .......... .......... .......... .......... 40% 108M 0s
10300K .......... .......... .......... .......... .......... 40% 95.4M 0s
10350K .......... .......... .......... .......... .......... 40% 101M 0s
10400K .......... .......... .......... .......... .......... 40% 173M 0s
10450K .......... .......... .......... .......... .......... 40% 90.4M 0s
10500K .......... .......... .......... .......... .......... 41% 156M 0s
10550K .......... .......... .......... .......... .......... 41% 84.9M 0s
10600K .......... .......... .......... .......... .......... 41% 104M 0s
10650K .......... .......... .......... .......... .......... 41% 118M 0s
10700K .......... .......... .......... .......... .......... 41% 96.4M 0s
10750K .......... .......... .......... .......... .......... 42% 130M 0s
10800K .......... .......... .......... .......... .......... 42% 102M 0s
10850K .......... .......... .......... .......... .......... 42% 100M 0s
10900K .......... .......... .......... .......... .......... 42% 137M 0s
10950K .......... .......... .......... .......... .......... 42% 2.27M 0s
11000K .......... .......... .......... .......... .......... 43% 40.6M 0s
11050K .......... .......... .......... .......... .......... 43% 50.5M 0s
11100K .......... .......... .......... .......... .......... 43% 104M 0s
11150K .......... .......... .......... .......... .......... 43% 109M 0s
11200K .......... .......... .......... .......... .......... 43% 93.8M 0s
11250K .......... .......... .......... .......... .......... 44% 141M 0s
11300K .......... .......... .......... .......... .......... 44% 103M 0s
11350K .......... .......... .......... .......... .......... 44% 90.7M 0s
11400K .......... .......... .......... .......... .......... 44% 128M 0s
11450K .......... .......... .......... .......... .......... 44% 126M 0s
11500K .......... .......... .......... .......... .......... 45% 85.8M 0s
11550K .......... .......... .......... .......... .......... 45% 112M 0s
11600K .......... .......... .......... .......... .......... 45% 133M 0s
11650K .......... .......... .......... .......... .......... 45% 107M 0s
11700K .......... .......... .......... .......... .......... 45% 92.3M 0s
11750K .......... .......... .......... .......... .......... 45% 128M 0s
11800K .......... .......... .......... .......... .......... 46% 119M 0s
11850K .......... .......... .......... .......... .......... 46% 92.0M 0s
11900K .......... .......... .......... .......... .......... 46% 105M 0s
11950K .......... .......... .......... .......... .......... 46% 110M 0s
12000K .......... .......... .......... .......... .......... 46% 120M 0s
12050K .......... .......... .......... .......... .......... 47% 107M 0s
12100K .......... .......... .......... .......... .......... 47% 127M 0s
12150K .......... .......... .......... .......... .......... 47% 111M 0s
12200K .......... .......... .......... .......... .......... 47% 85.2M 0s
12250K .......... .......... .......... .......... .......... 47% 113M 0s
12300K .......... .......... .......... .......... .......... 48% 125M 0s
12350K .......... .......... .......... .......... .......... 48% 105M 0s
12400K .......... .......... .......... .......... .......... 48% 122M 0s
12450K .......... .......... .......... .......... .......... 48% 121M 0s
12500K .......... .......... .......... .......... .......... 48% 88.2M 0s
12550K .......... .......... .......... .......... .......... 49% 99.9M 0s
12600K .......... .......... .......... .......... .......... 49% 144M 0s
12650K .......... .......... .......... .......... .......... 49% 98.6M 0s
12700K .......... .......... .......... .......... .......... 49% 104M 0s
12750K .......... .......... .......... .......... .......... 49% 107M 0s
12800K .......... .......... .......... .......... .......... 50% 138M 0s
12850K .......... .......... .......... .......... .......... 50% 91.0M 0s
12900K .......... .......... .......... .......... .......... 50% 117M 0s
12950K .......... .......... .......... .......... .......... 50% 96.1M 0s
13000K .......... .......... .......... .......... .......... 50% 154M 0s
13050K .......... .......... .......... .......... .......... 51% 83.6M 0s
13100K .......... .......... .......... .......... .......... 51% 140M 0s
13150K .......... .......... .......... .......... .......... 51% 105M 0s
13200K .......... .......... .......... .......... .......... 51% 108M 0s
13250K .......... .......... .......... .......... .......... 51% 92.4M 0s
13300K .......... .......... .......... .......... .......... 52% 114M 0s
13350K .......... .......... .......... .......... .......... 52% 136M 0s
13400K .......... .......... .......... .......... .......... 52% 98.4M 0s
13450K .......... .......... .......... .......... .......... 52% 90.4M 0s
13500K .......... .......... .......... .......... .......... 52% 123M 0s
13550K .......... .......... .......... .......... .......... 52% 141M 0s
13600K .......... .......... .......... .......... .......... 53% 88.4M 0s
13650K .......... .......... .......... .......... .......... 53% 104M 0s
13700K .......... .......... .......... .......... .......... 53% 113M 0s
13750K .......... .......... .......... .......... .......... 53% 121M 0s
13800K .......... .......... .......... .......... .......... 53% 95.6M 0s
13850K .......... .......... .......... .......... .......... 54% 115M 0s
13900K .......... .......... .......... .......... .......... 54% 132M 0s
13950K .......... .......... .......... .......... .......... 54% 96.7M 0s
14000K .......... .......... .......... .......... .......... 54% 94.5M 0s
14050K .......... .......... .......... .......... .......... 54% 115M 0s
14100K .......... .......... .......... .......... .......... 55% 92.6M 0s
14150K .......... .......... .......... .......... .......... 55% 144M 0s
14200K .......... .......... .......... .......... .......... 55% 111M 0s
14250K .......... .......... .......... .......... .......... 55% 131M 0s
14300K .......... .......... .......... .......... .......... 55% 97.7M 0s
14350K .......... .......... .......... .......... .......... 56% 95.1M 0s
14400K .......... .......... .......... .......... .......... 56% 114M 0s
14450K .......... .......... .......... .......... .......... 56% 123M 0s
14500K .......... .......... .......... .......... .......... 56% 104M 0s
14550K .......... .......... .......... .......... .......... 56% 94.5M 0s
14600K .......... .......... .......... .......... .......... 57% 115M 0s
14650K .......... .......... .......... .......... .......... 57% 144M 0s
14700K .......... .......... .......... .......... .......... 57% 88.5M 0s
14750K .......... .......... .......... .......... .......... 57% 112M 0s
14800K .......... .......... .......... .......... .......... 57% 99.2M 0s
14850K .......... .......... .......... .......... .......... 58% 158M 0s
14900K .......... .......... .......... .......... .......... 58% 83.3M 0s
14950K .......... .......... .......... .......... .......... 58% 135M 0s
15000K .......... .......... .......... .......... .......... 58% 115M 0s
15050K .......... .......... .......... .......... .......... 58% 100M 0s
15100K .......... .......... .......... .......... .......... 59% 98.6M 0s
15150K .......... .......... .......... .......... .......... 59% 108M 0s
15200K .......... .......... .......... .......... .......... 59% 149M 0s
15250K .......... .......... .......... .......... .......... 59% 98.6M 0s
15300K .......... .......... .......... .......... .......... 59% 92.3M 0s
15350K .......... .......... .......... .......... .......... 60% 135M 0s
15400K .......... .......... .......... .......... .......... 60% 112M 0s
15450K .......... .......... .......... .......... .......... 60% 103M 0s
15500K .......... .......... .......... .......... .......... 60% 87.5M 0s
15550K .......... .......... .......... .......... .......... 60% 150M 0s
15600K .......... .......... .......... .......... .......... 60% 120M 0s
15650K .......... .......... .......... .......... .......... 61% 85.9M 0s
15700K .......... .......... .......... .......... .......... 61% 151M 0s
15750K .......... .......... .......... .......... .......... 61% 93.8M 0s
15800K .......... .......... .......... .......... .......... 61% 97.1M 0s
15850K .......... .......... .......... .......... .......... 61% 116M 0s
15900K .......... .......... .......... .......... .......... 62% 104M 0s
15950K .......... .......... .......... .......... .......... 62% 129M 0s
16000K .......... .......... .......... .......... .......... 62% 101M 0s
16050K .......... .......... .......... .......... .......... 62% 92.4M 0s
16100K .......... .......... .......... .......... .......... 62% 140M 0s
16150K .......... .......... .......... .......... .......... 63% 106M 0s
16200K .......... .......... .......... .......... .......... 63% 107M 0s
16250K .......... .......... .......... .......... .......... 63% 93.7M 0s
16300K .......... .......... .......... .......... .......... 63% 141M 0s
16350K .......... .......... .......... .......... .......... 63% 87.5M 0s
16400K .......... .......... .......... .......... .......... 64% 123M 0s
16450K .......... .......... .......... .......... .......... 64% 1.18M 0s
16500K .......... .......... .......... .......... .......... 64% 44.4M 0s
16550K .......... .......... .......... .......... .......... 64% 51.4M 0s
16600K .......... .......... .......... .......... .......... 64% 105M 0s
16650K .......... .......... .......... .......... .......... 65% 91.8M 0s
16700K .......... .......... .......... .......... .......... 65% 140M 0s
16750K .......... .......... .......... .......... .......... 65% 109M 0s
16800K .......... .......... .......... .......... .......... 65% 93.9M 0s
16850K .......... .......... .......... .......... .......... 65% 123M 0s
16900K .......... .......... .......... .......... .......... 66% 127M 0s
16950K .......... .......... .......... .......... .......... 66% 65.1M 0s
17000K .......... .......... .......... .......... .......... 66% 136M 0s
17050K .......... .......... .......... .......... .......... 66% 108M 0s
17100K .......... .......... .......... .......... .......... 66% 142M 0s
17150K .......... .......... .......... .......... .......... 67% 75.1M 0s
17200K .......... .......... .......... .......... .......... 67% 165M 0s
17250K .......... .......... .......... .......... .......... 67% 124M 0s
17300K .......... .......... .......... .......... .......... 67% 97.7M 0s
17350K .......... .......... .......... .......... .......... 67% 115M 0s
17400K .......... .......... .......... .......... .......... 67% 84.8M 0s
17450K .......... .......... .......... .......... .......... 68% 117M 0s
17500K .......... .......... .......... .......... .......... 68% 90.7M 0s
17550K .......... .......... .......... .......... .......... 68% 146M 0s
17600K .......... .......... .......... .......... .......... 68% 112M 0s
17650K .......... .......... .......... .......... .......... 68% 88.4M 0s
17700K .......... .......... .......... .......... .......... 69% 183M 0s
17750K .......... .......... .......... .......... .......... 69% 91.1M 0s
17800K .......... .......... .......... .......... .......... 69% 106M 0s
17850K .......... .......... .......... .......... .......... 69% 117M 0s
17900K .......... .......... .......... .......... .......... 69% 108M 0s
17950K .......... .......... .......... .......... .......... 70% 104M 0s
18000K .......... .......... .......... .......... .......... 70% 137M 0s
18050K .......... .......... .......... .......... .......... 70% 106M 0s
18100K .......... .......... .......... .......... .......... 70% 90.4M 0s
18150K .......... .......... .......... .......... .......... 70% 123M 0s
18200K .......... .......... .......... .......... .......... 71% 92.8M 0s
18250K .......... .......... .......... .......... .......... 71% 115M 0s
18300K .......... .......... .......... .......... .......... 71% 107M 0s
18350K .......... .......... .......... .......... .......... 71% 107M 0s
18400K .......... .......... .......... .......... .......... 71% 92.7M 0s
18450K .......... .......... .......... .......... .......... 72% 149M 0s
18500K .......... .......... .......... .......... .......... 72% 102M 0s
18550K .......... .......... .......... .......... .......... 72% 97.1M 0s
18600K .......... .......... .......... .......... .......... 72% 99.5M 0s
18650K .......... .......... .......... .......... .......... 72% 136M 0s
18700K .......... .......... .......... .......... .......... 73% 88.5M 0s
18750K .......... .......... .......... .......... .......... 73% 125M 0s
18800K .......... .......... .......... .......... .......... 73% 55.6M 0s
18850K .......... .......... .......... .......... .......... 73% 204M 0s
18900K .......... .......... .......... .......... .......... 73% 140M 0s
18950K .......... .......... .......... .......... .......... 74% 156M 0s
19000K .......... .......... .......... .......... .......... 74% 139M 0s
19050K .......... .......... .......... .......... .......... 74% 96.1M 0s
19100K .......... .......... .......... .......... .......... 74% 141M 0s
19150K .......... .......... .......... .......... .......... 74% 105M 0s
19200K .......... .......... .......... .......... .......... 75% 91.2M 0s
19250K .......... .......... .......... .......... .......... 75% 99.5M 0s
19300K .......... .......... .......... .......... .......... 75% 108M 0s
19350K .......... .......... .......... .......... .......... 75% 124M 0s
19400K .......... .......... .......... .......... .......... 75% 113M 0s
19450K .......... .......... .......... .......... .......... 75% 93.5M 0s
19500K .......... .......... .......... .......... .......... 76% 103M 0s
19550K .......... .......... .......... .......... .......... 76% 142M 0s
19600K .......... .......... .......... .......... .......... 76% 102M 0s
19650K .......... .......... .......... .......... .......... 76% 105M 0s
19700K .......... .......... .......... .......... .......... 76% 136M 0s
19750K .......... .......... .......... .......... .......... 77% 88.9M 0s
19800K .......... .......... .......... .......... .......... 77% 119M 0s
19850K .......... .......... .......... .......... .......... 77% 114M 0s
19900K .......... .......... .......... .......... .......... 77% 111M 0s
19950K .......... .......... .......... .......... .......... 77% 108M 0s
20000K .......... .......... .......... .......... .......... 78% 91.1M 0s
20050K .......... .......... .......... .......... .......... 78% 137M 0s
20100K .......... .......... .......... .......... .......... 78% 100M 0s
20150K .......... .......... .......... .......... .......... 78% 113M 0s
20200K .......... .......... .......... .......... .......... 78% 86.7M 0s
20250K .......... .......... .......... .......... .......... 79% 148M 0s
20300K .......... .......... .......... .......... .......... 79% 108M 0s
20350K .......... .......... .......... .......... .......... 79% 92.3M 0s
20400K .......... .......... .......... .......... .......... 79% 135M 0s
20450K .......... .......... .......... .......... .......... 79% 101M 0s
20500K .......... .......... .......... .......... .......... 80% 108M 0s
20550K .......... .......... .......... .......... .......... 80% 119M 0s
20600K .......... .......... .......... .......... .......... 80% 84.2M 0s
20650K .......... .......... .......... .......... .......... 80% 142M 0s
20700K .......... .......... .......... .......... .......... 80% 105M 0s
20750K .......... .......... .......... .......... .......... 81% 99.7M 0s
20800K .......... .......... .......... .......... .......... 81% 148M 0s
20850K .......... .......... .......... .......... .......... 81% 88.2M 0s
20900K .......... .......... .......... .......... .......... 81% 105M 0s
20950K .......... .......... .......... .......... .......... 81% 147M 0s
21000K .......... .......... .......... .......... .......... 82% 22.1M 0s
21050K .......... .......... .......... .......... .......... 82% 148M 0s
21100K .......... .......... .......... .......... .......... 82% 101M 0s
21150K .......... .......... .......... .......... .......... 82% 93.5M 0s
21200K .......... .......... .......... .......... .......... 82% 155M 0s
21250K .......... .......... .......... .......... .......... 82% 110M 0s
21300K .......... .......... .......... .......... .......... 83% 92.0M 0s
21350K .......... .......... .......... .......... .......... 83% 98.9M 0s
21400K .......... .......... .......... .......... .......... 83% 143M 0s
21450K .......... .......... .......... .......... .......... 83% 103M 0s
21500K .......... .......... .......... .......... .......... 83% 138M 0s
21550K .......... .......... .......... .......... .......... 84% 73.2M 0s
21600K .......... .......... .......... .......... .......... 84% 129M 0s
21650K .......... .......... .......... .......... .......... 84% 125M 0s
21700K .......... .......... .......... .......... .......... 84% 90.8M 0s
21750K .......... .......... .......... .......... .......... 84% 142M 0s
21800K .......... .......... .......... .......... .......... 85% 102M 0s
21850K .......... .......... .......... .......... .......... 85% 103M 0s
21900K .......... .......... .......... .......... .......... 85% 123M 0s
21950K .......... .......... .......... .......... .......... 85% 1.27M 0s
22000K .......... .......... .......... .......... .......... 85% 26.3M 0s
22050K .......... .......... .......... .......... .......... 86% 118M 0s
22100K .......... .......... .......... .......... .......... 86% 43.6M 0s
22150K .......... .......... .......... .......... .......... 86% 108M 0s
22200K .......... .......... .......... .......... .......... 86% 101M 0s
22250K .......... .......... .......... .......... .......... 86% 124M 0s
22300K .......... .......... .......... .......... .......... 87% 86.6M 0s
22350K .......... .......... .......... .......... .......... 87% 118M 0s
22400K .......... .......... .......... .......... .......... 87% 93.7M 0s
22450K .......... .......... .......... .......... .......... 87% 123M 0s
22500K .......... .......... .......... .......... .......... 87% 90.9M 0s
22550K .......... .......... .......... .......... .......... 88% 131M 0s
22600K .......... .......... .......... .......... .......... 88% 29.2M 0s
22650K .......... .......... .......... .......... .......... 88% 137M 0s
22700K .......... .......... .......... .......... .......... 88% 115M 0s
22750K .......... .......... .......... .......... .......... 88% 112M 0s
22800K .......... .......... .......... .......... .......... 89% 96.7M 0s
22850K .......... .......... .......... .......... .......... 89% 124M 0s
22900K .......... .......... .......... .......... .......... 89% 92.7M 0s
22950K .......... .......... .......... .......... .......... 89% 107M 0s
23000K .......... .......... .......... .......... .......... 89% 94.2M 0s
23050K .......... .......... .......... .......... .......... 90% 143M 0s
23100K .......... .......... .......... .......... .......... 90% 110M 0s
23150K .......... .......... .......... .......... .......... 90% 143M 0s
23200K .......... .......... .......... .......... .......... 90% 92.0M 0s
23250K .......... .......... .......... .......... .......... 90% 94.7M 0s
23300K .......... .......... .......... .......... .......... 90% 116M 0s
23350K .......... .......... .......... .......... .......... 91% 147M 0s
23400K .......... .......... .......... .......... .......... 91% 88.2M 0s
23450K .......... .......... .......... .......... .......... 91% 117M 0s
23500K .......... .......... .......... .......... .......... 91% 92.3M 0s
23550K .......... .......... .......... .......... .......... 91% 166M 0s
23600K .......... .......... .......... .......... .......... 92% 94.2M 0s
23650K .......... .......... .......... .......... .......... 92% 104M 0s
23700K .......... .......... .......... .......... .......... 92% 117M 0s
23750K .......... .......... .......... .......... .......... 92% 109M 0s
23800K .......... .......... .......... .......... .......... 92% 86.9M 0s
23850K .......... .......... .......... .......... .......... 93% 110M 0s
23900K .......... .......... .......... .......... .......... 93% 173M 0s
23950K .......... .......... .......... .......... .......... 93% 92.5M 0s
24000K .......... .......... .......... .......... .......... 93% 103M 0s
24050K .......... .......... .......... .......... .......... 93% 136M 0s
24100K .......... .......... .......... .......... .......... 94% 101M 0s
24150K .......... .......... .......... .......... .......... 94% 141M 0s
24200K .......... .......... .......... .......... .......... 94% 78.3M 0s
24250K .......... .......... .......... .......... .......... 94% 96.4M 0s
24300K .......... .......... .......... .......... .......... 94% 155M 0s
24350K .......... .......... .......... .......... .......... 95% 104M 0s
24400K .......... .......... .......... .......... .......... 95% 85.1M 0s
24450K .......... .......... .......... .......... .......... 95% 145M 0s
24500K .......... .......... .......... .......... .......... 95% 113M 0s
24550K .......... .......... .......... .......... .......... 95% 132M 0s
24600K .......... .......... .......... .......... .......... 96% 89.1M 0s
24650K .......... .......... .......... .......... .......... 96% 112M 0s
24700K .......... .......... .......... .......... .......... 96% 107M 0s
24750K .......... .......... .......... .......... .......... 96% 101M 0s
24800K .......... .......... .......... .......... .......... 96% 119M 0s
24850K .......... .......... .......... .......... .......... 97% 112M 0s
24900K .......... .......... .......... .......... .......... 97% 115M 0s
24950K .......... .......... .......... .......... .......... 97% 114M 0s
25000K .......... .......... .......... .......... .......... 97% 74.3M 0s
25050K .......... .......... .......... .......... .......... 97% 137M 0s
25100K .......... .......... .......... .......... .......... 97% 116M 0s
25150K .......... .......... .......... .......... .......... 98% 135M 0s
25200K .......... .......... .......... .......... .......... 98% 87.2M 0s
25250K .......... .......... .......... .......... .......... 98% 114M 0s
25300K .......... .......... .......... .......... .......... 98% 147M 0s
25350K .......... .......... .......... .......... .......... 98% 102M 0s
25400K .......... .......... .......... .......... .......... 99% 96.5M 0s
25450K .......... .......... .......... .......... .......... 99% 93.1M 0s
25500K .......... .......... .......... .......... .......... 99% 107M 0s
25550K .......... .......... .......... .......... .......... 99% 124M 0s
25600K .......... .......... .......... .......... .......... 99% 116M 0s
25650K .......... ... 100% 298M=0.4s

2021-10-17 04:26:15 (62.4 MB/s) - 'trash.zip' saved [26279747/26279747]

Archive: trash.zip
inflating: trash
Update Sonarr/Radarr Quality definition and release profiles...
[INF] Processing Release Profile: Series
[INF] Configuration is set to allow optional terms to be synchronized
[ERR] HTTP error while communicating with Sonarr
Flurl.Http.FlurlParsingException: Response could not be deserialized to JSON: GET http://IP:PORT/api/v3/releaseprofile?apikey=API
---> Newtonsoft.Json.JsonReaderException: Unexpected character encountered while parsing value: [. Path '[0].required', line 5, position 17.
at Newtonsoft.Json.JsonTextReader.ReadStringValue(ReadType readType)
at Newtonsoft.Json.JsonTextReader.ReadAsString()
at Newtonsoft.Json.JsonReader.ReadForType(JsonContract contract, Boolean hasConverter)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.PopulateObject(Object newObject, JsonReader reader, JsonObjectContract contract, JsonProperty member, String id)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateObject(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.PopulateList(IList list, JsonReader reader, JsonArrayContract contract, JsonProperty containerProperty, String id)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateList(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, Object existingValue, String id)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.CreateValueInternal(JsonReader reader, Type objectType, JsonContract contract, JsonProperty member, JsonContainerContract containerContract, JsonProperty containerMember, Object existingValue)
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent)
at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType)
at Newtonsoft.Json.JsonSerializer.Deserialize[T](JsonReader reader)
at Flurl.Http.Configuration.NewtonsoftJsonSerializer.Deserialize[T](Stream stream)
at Flurl.Http.FlurlResponse.GetJsonAsync[T]()
--- End of inner exception stack trace ---
at Flurl.Http.FlurlRequest.HandleExceptionAsync(FlurlCall call, Exception ex, CancellationToken token)
at Flurl.Http.FlurlResponse.GetJsonAsync[T]()
at Flurl.Http.ResponseExtensions.ReceiveJson[T](Task`1 response)
at TrashLib.Sonarr.Api.SonarrApi.GetReleaseProfiles()
at TrashLib.Sonarr.ReleaseProfile.ReleaseProfileUpdater.ProcessReleaseProfiles(IDictionary`2 profiles, ReleaseProfileConfig config)
at TrashLib.Sonarr.ReleaseProfile.ReleaseProfileUpdater.Process(Boolean isPreview, SonarrConfiguration config)
at Trash.Command.SonarrCommand.Process()
Exiting due to previous exception
Updates completed...

release_profile
winscp_trash_updater

@rcdailey
Copy link
Member

Hey, sorry for the misunderstanding but this fix is not released yet. The one-liner you're running pulls the latest release. I have not yet released the fix. If you want an interim build, you can download the artifact directly from the build pipeline here (scroll down to the "Artifacts" section, download the ZIP, which contains every platform in it. Pick the one you care for).

This isn't designed to be easy, as the artifacts serve as only a mechanism to publish a release later. They're not intended for mainstream distribution. But this should unblock you and I'd appreciate the testing anyhow!

@ghost
Copy link

ghost commented Oct 17, 2021

Sorry to jump the gun! However, it's working perfectly!
I just tested it on a spare instance of sonarr and radarr before doing it in my main ones... Perfection!

Obviously, ignore the warnings since that's on me. I'm also still trying to get everything customized as I want it on the YAML (need to change some scores manually etc). I also need to look through the anime section a bit more carefully to see what I want to keep.

Anyway, it's working exactly as it should. Thank you VERY much for this :-)

Script location: /tmp/user.scripts/tmpScripts/trash2/script
Note that closing this window will abort the execution of this script[INF] Configuration is set to allow optional terms to be synchronized
[INF] Create new profile: [Trash] Series - First Release Profile
[INF] Create new profile: [Trash] Series - Second Release Profile
[INF] Processing Quality Definition: Hybrid
[INF] Notice: Hybrid only functions on 720/1080 qualities and uses non-anime values for the rest (e.g. 2160)
[INF] Number of updated qualities: 14
[INF] Processing Quality Definition: Movie
[INF] Number of updated qualities: 14
[INF] Requesting and parsing guide markdown

[WRN] The below custom formats have no score in the guide or YAML config and will be skipped (remove them from your config or specify a score to fix this warning)
[WRN] ["MPEG2", "ff86c4326018682f817830ced463332b", "any"]
[WRN] ["MPEG2", "ff86c4326018682f817830ced463332b", "anime"]
[WRN] ["Streaming Services", "fd7da02c647dd3f1b6757e150fffc5ff", "any"]
[WRN] ["Anime Dual Audio", "4a3b087eea2ce012fcc1ce319259a3be", "anime"]

[INF] Created 55 New Custom Formats: ["TrueHD ATMOS", "DTS X", "ATMOS (undefined)", "DD+ ATMOS", "TrueHD", "DTS-HD MA", "FLAC", "PCM", "DTS-HD HRA", "DD+", "DTS-ES", "DTS", "AAC", "DD", "MP3", "Opus", "1.0 Mono", "2.0 Stereo", "3.0 Sound", "4.0 Sound", "5.1 Surround", "6.1 Surround", "7.1 Surround", "9.1 Surround", "DoVi", "DoVi (SL)", "HDR", "HDR (undefined)", "10 Bit", "Hybrid", "Remaster", "4K Remaster", "Criterion Collection", "Special Edition", "IMAX", "Theatrical Cut", "BR-DISK", "EVO (no WEBDL)", "LQ", "x265 (720/1080p)", "3D", "No-RlsGroup", "Obfuscated", "DoVi (WEBDL)", "Repack/Proper", "FreeLeech", "MPEG2", "HQ", "HQ-Remux", "Streaming Services", "HQ-WEBDL", "x264", "x265", "Anime Dual Audio", "Multi"]
[INF] Total of 55 custom formats synced to Radarr
[INF] Updated 2 profiles and a total of 71 scores
Updates completed...

@jpdsc
Copy link
Author

jpdsc commented Oct 20, 2021

@rcdailey I have tested the artifact Linux x64 and it is working as intended. If you have anything specific you want me to test; let me know.

@janipewter
Copy link

Is there a fix for this yet?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants