Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/32b88ce342cdd8a1dc32ac5b29e4e08aa8c8067a You should set ROOT_URL correctly, otherwise the web may not work correctly.

set expect 100 continue for post requests

pull/702/head
Luke Pulverenti 11 years ago
parent f20f3b4b68
commit 32b88ce342

@ -64,6 +64,9 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager
_logger = logger;
_fileSystem = fileSystem;
_appPaths = appPaths;
// http://stackoverflow.com/questions/566437/http-post-returns-the-error-417-expectation-failed-c
ServicePointManager.Expect100Continue = false;
}
/// <summary>

Loading…
Cancel
Save