We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b8ccb2 commit b9d1f45Copy full SHA for b9d1f45
1 file changed
js/rtorrent.js
@@ -200,7 +200,11 @@ function rTorrentStub( URI )
200
this.content = null;
201
this.mountPoint = theURLs.XMLRPCMountPoint;
202
this.faultString = [];
203
- this.contentType = "text/xml; charset=UTF-8";
+ /* Remove 'charset=UTF-8' due to bug in rtorrent.
204
+ * https://github.com/Novik/ruTorrent/issues/2879
205
+ * https://github.com/rakshasa/rtorrent/issues/1444#issuecomment-2847868158
206
+ */
207
+ this.contentType = "text/xml";
208
this.dataType = "xml";
209
this.method = "POST";
210
this.ifModified = false;
0 commit comments