kipwoker / SoundCloud.API.Client

It's .NET client for SoundCloud API https://developers.soundcloud.com/docs/api/reference
52 stars 14 forks source link

Using same file path to all uploads, even audio files? #6

Open gustavorps opened 5 years ago

gustavorps commented 5 years ago

https://github.com/kipwoker/SoundCloud.API.Client/blob/7f86adcfda9f66b61df6730141f241a303342e36/SoundCloud.API.Client/Internal/Infrastructure/Objects/Uploading/File.cs#L15-L23

kipwoker commented 5 years ago

Do you have trouble with this? It's only used for

part.Headers["Content-Disposition"] = "form-data; name=\"" + file.FieldName + "\"; filename=\"" + file.Path + "\"";
gustavorps commented 5 years ago

Nothing critical, just strange to use an image name for an audio file

The issue may be closed if you so wish