Jonas Dellinger

Results 46 comments of Jonas Dellinger

@axelson Can you confirm that the workaround with compiling elixir-ls with the current installed elixir version still works? I'm currently unable to get this workaround to work for me, although...

* 1.10 worked perfectly :) * 1.11 worked as well, needed to compile with the mentioned PR ( #360 ) **EDIT:** 1.11 actually works with the PR you mentioned!

@probablyup The above comment already describes the error, probably a simple copy-paste error. I guess the correct line would be: ```js (importLocalName('default', state) && t.isCallExpression(tag) && t.isMemberExpression(tag.callee) && tag.callee.property.name ===...

Mh, understandable. We will have to go for forking then! Thanks for keeping the project open-source so this is even possible 👍🏼

The field is readonly, but you can still add fields with `model.Fields.Add(...)` Although we may want to change the type to `List`, which would also allow to do `AddRange(otherList)`

I just tested this with the following call, and all fields are populated: ``` Paging playlists = await spotify.Playlists.CurrentUsers(); Debug.WriteLine(playlists.Items[0].Name); ``` ![image](https://user-images.githubusercontent.com/3109892/180009081-919ada17-8fe7-4022-84ca-056c6e08f9cf.png)

I'm very confused how you would come to that conclusion :D ![image](https://user-images.githubusercontent.com/3109892/180019202-b35a64a0-6754-4aff-8aa9-15c2ae635879.png) `Fields` are not applied if they're empty: https://github.com/JohnnyCrazy/SpotifyAPI-NET/blob/7acffd96bab8111eeb59f934c434730e53afa8ca/SpotifyAPI.Web/Models/Request/RequestParams.cs#L106-L115

No worries, feel free to ask more in a seperate discussion if stuff comes up :)

Hi, This is probably because the authenticator is still applied after your `retry` call. https://github.com/JohnnyCrazy/SpotifyAPI-NET/blob/b400d63087ce0eb78cd73b59a16cfd3fbf4f5907/SpotifyAPI.Web/Http/APIConnector.cs#L204-L215 I think your authenticator should take care of refreshing the token, similar to https://github.com/JohnnyCrazy/SpotifyAPI-NET/blob/b400d63087ce0eb78cd73b59a16cfd3fbf4f5907/SpotifyAPI.Web/Authenticators/AuthorizationCodeAuthenticator.cs So...